summaryrefslogtreecommitdiff
path: root/src/organizercore.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-08-02 23:24:27 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-08-04 06:09:47 -0400
commitb6b01a52db1877b16531137289641fb9be9833aa (patch)
tree4822150ac91a22ec68fd8f63f29df296691c8f81 /src/organizercore.cpp
parenta7df11a31d684cfc341fc401dc3a9449f2538084 (diff)
removed mentions of QSettings from main.cpp
added necessary member functions in Settings
Diffstat (limited to 'src/organizercore.cpp')
-rw-r--r--src/organizercore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/organizercore.cpp b/src/organizercore.cpp
index 1e164525..72c8dab5 100644
--- a/src/organizercore.cpp
+++ b/src/organizercore.cpp
@@ -480,14 +480,14 @@ return true;
}
-void OrganizerCore::updateExecutablesList(QSettings &settings)
+void OrganizerCore::updateExecutablesList()
{
if (m_PluginContainer == nullptr) {
log::error("can't update executables list now");
return;
}
- m_ExecutablesList.load(managedGame(), settings);
+ m_ExecutablesList.load(managedGame(), m_Settings.directInterface());
// TODO this has nothing to do with executables list move to an appropriate
// function!