diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-03-16 14:14:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-03-16 14:14:29 +0300 |
commit | 46087564d4184b28740b0c45c1bac199ab1942ec (patch) | |
tree | 0591b36aba2ae392eb569828930f030850cbc769 /src/touchmanager.cpp | |
parent | cf9b1182f06b1336f0d1071c267ea36c990430fa (diff) | |
download | mv-46087564d4184b28740b0c45c1bac199ab1942ec.tar.gz mv-46087564d4184b28740b0c45c1bac199ab1942ec.tar.bz2 mv-46087564d4184b28740b0c45c1bac199ab1942ec.tar.xz mv-46087564d4184b28740b0c45c1bac199ab1942ec.zip |
Improve theme usage.
Removed instance method.
Diffstat (limited to 'src/touchmanager.cpp')
-rw-r--r-- | src/touchmanager.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/touchmanager.cpp b/src/touchmanager.cpp index b1ed41fdc..b9681c337 100644 --- a/src/touchmanager.cpp +++ b/src/touchmanager.cpp @@ -122,7 +122,6 @@ void TouchManager::loadTouchItem(TouchItem **item, const std::string &name, const TouchFuncPtr fOut) { *item = nullptr; - Theme *const theme = Theme::instance(); if (!theme) return; ImageRect *images = new ImageRect; @@ -394,7 +393,6 @@ void TouchManager::loadPad() void TouchManager::loadButtons() { const int sz = (mButtonsSize + 1) * 50; - Theme *const theme = Theme::instance(); if (!theme) return; Skin *const skin = theme->load("dbutton.xml", ""); |