diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-08-02 23:24:27 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-08-04 06:09:47 -0400 |
| commit | b6b01a52db1877b16531137289641fb9be9833aa (patch) | |
| tree | 4822150ac91a22ec68fd8f63f29df296691c8f81 /src/organizercore.cpp | |
| parent | a7df11a31d684cfc341fc401dc3a9449f2538084 (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.cpp | 4 |
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! |
