diff --git a/src/lib/gui/config/AppConfig.cpp b/src/lib/gui/config/AppConfig.cpp index 0fd08a798..7000f9634 100644 --- a/src/lib/gui/config/AppConfig.cpp +++ b/src/lib/gui/config/AppConfig.cpp @@ -19,16 +19,6 @@ using namespace deskflow::gui; -// this should be incremented each time the wizard is changed, -// which will force it to re-run for existing installations. -const int kWizardVersion = 8; - -#if defined(Q_OS_WIN) -const char AppConfig::m_LogDir[] = "log/"; -#else -const char AppConfig::m_LogDir[] = "/var/log/"; -#endif - // TODO: instead, use key value pair table, which would be less fragile. const char *const AppConfig::m_SettingsName[] = { "", // screenName moved to deskflow settings diff --git a/src/lib/gui/config/AppConfig.h b/src/lib/gui/config/AppConfig.h index 9aeed1dbe..736292f6d 100644 --- a/src/lib/gui/config/AppConfig.h +++ b/src/lib/gui/config/AppConfig.h @@ -161,8 +161,6 @@ private: /// @param [in] scope which should be loaded. void loadScope(IConfigScopes::Scope scope); - static const char m_LogDir[]; - /// @brief Contains the string values of the settings names that will be saved static const char *const m_SettingsName[];