aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/abstractpreferenceswidget.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-10 13:45:13 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-10 13:45:13 -0800
commit111a153295dd50822dfe84da7b45ba06cac7bc84 (patch)
tree1154c0a2c60eab42f087ad4749c058e53bf2cb58 /desktop-widgets/preferences/abstractpreferenceswidget.h
parent77d7e773b913378486399d292cc21c4329387578 (diff)
downloadsubsurface-111a153295dd50822dfe84da7b45ba06cac7bc84.tar.gz
Preferences: correctly hook up the signals to enable/disable cloud storage
This way the menu state matches the actual verification state again. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/preferences/abstractpreferenceswidget.h')
-rw-r--r--desktop-widgets/preferences/abstractpreferenceswidget.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/desktop-widgets/preferences/abstractpreferenceswidget.h b/desktop-widgets/preferences/abstractpreferenceswidget.h
index 2f607c4c9..89abc5080 100644
--- a/desktop-widgets/preferences/abstractpreferenceswidget.h
+++ b/desktop-widgets/preferences/abstractpreferenceswidget.h
@@ -19,9 +19,12 @@ public:
/* gets the values from the interface and set in the preferences object. */
virtual void syncSettings() = 0;
+signals:
+ void settingsChanged();
+
private:
QIcon _icon;
QString _name;
float _positionHeight;
};
-#endif \ No newline at end of file
+#endif