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/beingpopup.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/beingpopup.cpp')
-rw-r--r-- | src/gui/beingpopup.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/beingpopup.cpp b/src/gui/beingpopup.cpp index 3e3c7e29d..bdc7b9c27 100644 --- a/src/gui/beingpopup.cpp +++ b/src/gui/beingpopup.cpp @@ -60,10 +60,10 @@ BeingPopup::BeingPopup() : mBeingRank->setPosition(0, 3 * fontHeight); mBeingComment->setPosition(0, 4 * fontHeight); - mBeingParty->setForegroundColor(Theme::getThemeColor(Theme::POPUP)); - mBeingGuild->setForegroundColor(Theme::getThemeColor(Theme::POPUP)); - mBeingRank->setForegroundColor(Theme::getThemeColor(Theme::POPUP)); - mBeingComment->setForegroundColor(Theme::getThemeColor(Theme::POPUP)); + mBeingParty->setForegroundColor(getThemeColor(Theme::POPUP)); + mBeingGuild->setForegroundColor(getThemeColor(Theme::POPUP)); + mBeingRank->setForegroundColor(getThemeColor(Theme::POPUP)); + mBeingComment->setForegroundColor(getThemeColor(Theme::POPUP)); add(mBeingName); add(mBeingParty); @@ -107,12 +107,12 @@ void BeingPopup::show(const int x, const int y, Being *const b) } if (b->isAdvanced()) { - mBeingName->setForegroundColor(Theme::getThemeColor( + mBeingName->setForegroundColor(getThemeColor( Theme::PLAYER_ADVANCED)); } else { - mBeingName->setForegroundColor(Theme::getThemeColor(Theme::POPUP)); + mBeingName->setForegroundColor(getThemeColor(Theme::POPUP)); } mBeingName->adjustSize(); |