diff options
author | Marius Kintel <marius@kintel.net> | 2014-01-03 07:08:50 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2014-01-03 07:31:57 (GMT) |
commit | 3d5b844679871131e299fd335f998e994edae31f (patch) | |
tree | 719f3e866f4eee2039b8bd743835b3cf293f1a0d /src/Preferences.h | |
parent | 9caa2dcfa5fb6e56f88fdcf575e74c3e821d9c52 (diff) |
Keep cmd-line and GUI separate in terms of preferences, handle experimental tests separately, minor cleanups
Diffstat (limited to 'src/Preferences.h')
-rw-r--r-- | src/Preferences.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Preferences.h b/src/Preferences.h index 6310622..ef8835a 100644 --- a/src/Preferences.h +++ b/src/Preferences.h @@ -21,7 +21,7 @@ public: public slots: void actionTriggered(class QAction *); - void featuresCheckBoxToggled(bool); + void featuresCheckBoxToggled(bool); void on_colorSchemeChooser_itemSelectionChanged(); void on_fontChooser_activated(const QString &); void on_fontSize_editTextChanged(const QString &); @@ -45,15 +45,15 @@ private: void keyPressEvent(QKeyEvent *e); void updateGUI(); void removeDefaultSettings(); - void setupFeaturesPage(); - void addPrefPage(QActionGroup *group, QAction *action, QWidget *widget); + void setupFeaturesPage(); + void addPrefPage(QActionGroup *group, QAction *action, QWidget *widget); QSettings::SettingsMap defaultmap; QHash<QString, std::map<RenderSettings::RenderColor, Color4f> > colorschemes; - QHash<const QAction *, QWidget *> prefPages; + QHash<const QAction *, QWidget *> prefPages; static Preferences *instance; - static const char *featurePropertyName; + static const char *featurePropertyName; }; #endif |