diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-19 21:02:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 13:55:42 +0300 |
commit | 213a21e4c079113e5822d2cf90802d6dcb2cb232 (patch) | |
tree | 9d3ae306575ef0dc5c3b8346673e2f246b5e427e /src/gui/widgets/desktop.cpp | |
parent | c632452430cb3f886da38fa315cb27a3a3a10d2c (diff) | |
download | plus-213a21e4c079113e5822d2cf90802d6dcb2cb232.tar.gz plus-213a21e4c079113e5822d2cf90802d6dcb2cb232.tar.bz2 plus-213a21e4c079113e5822d2cf90802d6dcb2cb232.tar.xz plus-213a21e4c079113e5822d2cf90802d6dcb2cb232.zip |
In all controls, call Widget2 methods to get colors.
Diffstat (limited to 'src/gui/widgets/desktop.cpp')
-rw-r--r-- | src/gui/widgets/desktop.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/widgets/desktop.cpp b/src/gui/widgets/desktop.cpp index 275f57363..0a49d8e31 100644 --- a/src/gui/widgets/desktop.cpp +++ b/src/gui/widgets/desktop.cpp @@ -42,8 +42,8 @@ Desktop::Desktop() : Container(), gcn::WidgetListener(), mWallpaper(nullptr), - mBackgroundColor(Theme::getThemeColor(Theme::BACKGROUND, 128)), - mBackgroundGrayColor(Theme::getThemeColor(Theme::BACKGROUND_GRAY)) + mBackgroundColor(getThemeColor(Theme::BACKGROUND, 128)), + mBackgroundGrayColor(getThemeColor(Theme::BACKGROUND_GRAY)) { addWidgetListener(this); @@ -61,8 +61,7 @@ Desktop::Desktop() : appName.c_str())); } - mVersionLabel->setBackgroundColor( - Theme::getThemeColor(Theme::BACKGROUND, 128)); + mVersionLabel->setBackgroundColor(getThemeColor(Theme::BACKGROUND, 128)); add(mVersionLabel, 25, 2); } |