diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-07 02:48:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-08 16:46:28 +0300 |
commit | 27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f (patch) | |
tree | c2c38e1b4f308ca885dc3c3581560cfbc6833a8e /src/gui/gui.cpp | |
parent | d4e28aa97cbce34a0053d3c02cf070ef9065439f (diff) | |
download | plus-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.tar.gz plus-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.tar.bz2 plus-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.tar.xz plus-27a2dd4fce2d529cd1d96aa5ddce1e74b4f54a2f.zip |
Move resourcemanager from class to namespace.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 06afeccc6..227b0c463 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -300,7 +300,7 @@ Gui::~Gui() void Gui::logic() { BLOCK_START("Gui::logic") - resourceManager->clearScheduled(); + ResourceManager::clearScheduled(); if (!mTop) { @@ -359,8 +359,7 @@ void Gui::slowLogic() if (time > mTime10 || mTime10 - time > 10) { mTime10 = time + 10; - if (resourceManager) - resourceManager->cleanOrphans(); + ResourceManager::cleanOrphans(); } } |