summaryrefslogtreecommitdiffstats
path: root/src/controllers/dlgprefcontroller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/controllers/dlgprefcontroller.cpp')
-rw-r--r--src/controllers/dlgprefcontroller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controllers/dlgprefcontroller.cpp b/src/controllers/dlgprefcontroller.cpp
index 2e743b6887..eabe3f1be3 100644
--- a/src/controllers/dlgprefcontroller.cpp
+++ b/src/controllers/dlgprefcontroller.cpp
@@ -367,7 +367,7 @@ void DlgPrefController::slotLoadPreset(int chosenIndex) {
presetDirs.append(presetFileInfo.canonicalPath());
ControllerPresetPointer pPreset = ControllerPresetFileHandler::loadPreset(
- presetPath, ControllerManager::getPresetPaths(m_pConfig.data()));
+ presetPath, ControllerManager::getPresetPaths(m_pConfig));
// Import the preset scripts to the user scripts folder.
for (QList<ControllerPreset::ScriptFileInfo>::iterator it =
@@ -731,7 +731,7 @@ void DlgPrefController::openScript() {
foreach (QModelIndex index, selectedIndices) {
selectedRows.insert(index.row());
}
- QList<QString> scriptPaths = ControllerManager::getPresetPaths(m_pConfig.data());
+ QList<QString> scriptPaths = ControllerManager::getPresetPaths(m_pConfig);
foreach (int row, selectedRows) {
QString scriptName = m_ui.m_pScriptsTableWidget->item(row, 0)->text();