summaryrefslogtreecommitdiffstats
path: root/src/choosersettings.h
diff options
context:
space:
mode:
authorSimon Rettberg2019-06-03 15:47:47 +0200
committerSimon Rettberg2019-06-03 15:47:47 +0200
commitcf77e6923cae8b21b8319b7edf6102c80915b45a (patch)
tree95114958ec59569c91bf13d7df1caa7b4b820e62 /src/choosersettings.h
parentAdd option to show the "disable screensaver" checkbox (diff)
downloadvmchooser2-cf77e6923cae8b21b8319b7edf6102c80915b45a.tar.gz
vmchooser2-cf77e6923cae8b21b8319b7edf6102c80915b45a.tar.xz
vmchooser2-cf77e6923cae8b21b8319b7edf6102c80915b45a.zip
Refactor user .ini class, support "recent VMs" tab, misc. cleanup
Diffstat (limited to 'src/choosersettings.h')
-rw-r--r--src/choosersettings.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/choosersettings.h b/src/choosersettings.h
deleted file mode 100644
index ea0bb76..0000000
--- a/src/choosersettings.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * choosersettings.h
- *
- * Created on: Mar 24, 2014
- * Author: nils
- */
-
-#ifndef CHOOSERSETTINGS_H_
-#define CHOOSERSETTINGS_H_
-
-#include <QDebug>
-#include <QSettings>
-#include <QDir>
-
-// TODO: Proper name. This is the user specific settings, not global
-class ChooserSettings {
-public:
- static QString getSetting(QString key);
- static bool setSetting(QString key, QString value);
-
-private:
- static ChooserSettings* chooserSettings;
- static bool settingsLoaded;
-
- QSettings* settings;
-
- ChooserSettings();
- virtual ~ChooserSettings();
-};
-
-#endif /* CHOOSERSETTINGS_H_ */