diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-01-01 04:17:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-01-01 17:20:41 +0300 |
commit | c508209585cc7153d77d22ddb7b4ce6a291d00de (patch) | |
tree | 124338089a53a9aafd32851743f8e90be33123b1 /src/gui/widgets/label.cpp | |
parent | cec43b2dca390a30ee71154a372f03ab498e18c2 (diff) | |
download | plus-c508209585cc7153d77d22ddb7b4ce6a291d00de.tar.gz plus-c508209585cc7153d77d22ddb7b4ce6a291d00de.tar.bz2 plus-c508209585cc7153d77d22ddb7b4ce6a291d00de.tar.xz plus-c508209585cc7153d77d22ddb7b4ce6a291d00de.zip |
Replace some status methods usage from member pointers to static member calls.
Diffstat (limited to 'src/gui/widgets/label.cpp')
-rw-r--r-- | src/gui/widgets/label.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/label.cpp b/src/gui/widgets/label.cpp index 6fb3ae39e..6c05aa8b6 100644 --- a/src/gui/widgets/label.cpp +++ b/src/gui/widgets/label.cpp @@ -135,7 +135,7 @@ void Label::init() mSkin = theme->load("label.xml", "", true, - theme->getThemePath()); + Theme::getThemePath()); } } mInstances ++; |