summaryrefslogtreecommitdiffstats
path: root/src/controllers/dlgprefcontrollers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/controllers/dlgprefcontrollers.h')
-rw-r--r--src/controllers/dlgprefcontrollers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/controllers/dlgprefcontrollers.h b/src/controllers/dlgprefcontrollers.h
index 1e5cdf83a7..dcf22b33b8 100644
--- a/src/controllers/dlgprefcontrollers.h
+++ b/src/controllers/dlgprefcontrollers.h
@@ -4,7 +4,7 @@
#include <QTreeWidgetItem>
#include <QSignalMapper>
-#include "configobject.h"
+#include "preferences/usersettings.h"
#include "controllers/ui_dlgprefcontrollersdlg.h"
#include "preferences/dlgpreferencepage.h"
@@ -16,7 +16,7 @@ class DlgPrefControllers : public DlgPreferencePage, public Ui::DlgPrefControlle
Q_OBJECT
public:
DlgPrefControllers(DlgPreferences* pDlgPreferences,
- ConfigObject<ConfigValue>* pConfig,
+ UserSettingsPointer pConfig,
ControllerManager* pControllerManager,
QTreeWidgetItem* pControllerTreeItem);
virtual ~DlgPrefControllers();
@@ -38,7 +38,7 @@ class DlgPrefControllers : public DlgPreferencePage, public Ui::DlgPrefControlle
void setupControllerWidgets();
DlgPreferences* m_pDlgPreferences;
- ConfigObject<ConfigValue>* m_pConfig;
+ UserSettingsPointer m_pConfig;
ControllerManager* m_pControllerManager;
QTreeWidgetItem* m_pControllerTreeItem;
QList<DlgPrefController*> m_controllerWindows;