aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/function/GlobalSettingStation.h
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-12-03 09:17:09 +0000
committersaturneric <[email protected]>2024-12-03 09:17:09 +0000
commita8843bb04aeb314a088fa9ea4b577d14c1184ad1 (patch)
tree6526c2fb18517dcabbd65ee155ad16c77120ad3a /src/core/function/GlobalSettingStation.h
parentfix: discovered issues by testing (diff)
downloadGpgFrontend-a8843bb04aeb314a088fa9ea4b577d14c1184ad1.tar.gz
GpgFrontend-a8843bb04aeb314a088fa9ea4b577d14c1184ad1.zip
fix: variable 'mods_path' is reassigned a value before the old one has been used.
Diffstat (limited to 'src/core/function/GlobalSettingStation.h')
-rw-r--r--src/core/function/GlobalSettingStation.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/function/GlobalSettingStation.h b/src/core/function/GlobalSettingStation.h
index e7da0308..f45c0b49 100644
--- a/src/core/function/GlobalSettingStation.h
+++ b/src/core/function/GlobalSettingStation.h
@@ -124,6 +124,13 @@ class GPGFRONTEND_CORE_EXPORT GlobalSettingStation
*/
void ClearAllDataObjects() const;
+ /**
+ * @brief Get the Integrated Module Path object
+ *
+ * @return QString
+ */
+ [[nodiscard]] auto GetIntegratedModulePath() const -> QString;
+
private:
class Impl;
SecureUniquePtr<Impl> p_;