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/browserbox.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/browserbox.cpp')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index f8f3de2a0..0f72ad649 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -63,23 +63,23 @@ BrowserBox::BrowserBox(const unsigned int mode, const bool opaque) : mAlwaysUpdate(true), mProcessVersion(false), mEnableImages(false), - mBackgroundColor(Theme::getThemeColor(Theme::BACKGROUND)), - mHighlightColor(Theme::getThemeColor(Theme::HIGHLIGHT)), - mHyperLinkColor(Theme::getThemeColor(Theme::HYPERLINK)) + mBackgroundColor(getThemeColor(Theme::BACKGROUND)), + mHighlightColor(getThemeColor(Theme::HIGHLIGHT)), + mHyperLinkColor(getThemeColor(Theme::HYPERLINK)) { setFocusable(true); addMouseListener(this); - mColors[RED] = Theme::getThemeColor(Theme::RED); - mColors[GREEN] = Theme::getThemeColor(Theme::GREEN); - mColors[BLUE] = Theme::getThemeColor(Theme::BLUE); - mColors[ORANGE] = Theme::getThemeColor(Theme::ORANGE); - mColors[YELLOW] = Theme::getThemeColor(Theme::YELLOW); - mColors[PINK] = Theme::getThemeColor(Theme::PINK); - mColors[PURPLE] = Theme::getThemeColor(Theme::PURPLE); - mColors[GRAY] = Theme::getThemeColor(Theme::GRAY); - mColors[BROWN] = Theme::getThemeColor(Theme::BROWN); - mForegroundColor = Theme::getThemeColor(Theme::BROWSERBOX); + mColors[RED] = getThemeColor(Theme::RED); + mColors[GREEN] = getThemeColor(Theme::GREEN); + mColors[BLUE] = getThemeColor(Theme::BLUE); + mColors[ORANGE] = getThemeColor(Theme::ORANGE); + mColors[YELLOW] = getThemeColor(Theme::YELLOW); + mColors[PINK] = getThemeColor(Theme::PINK); + mColors[PURPLE] = getThemeColor(Theme::PURPLE); + mColors[GRAY] = getThemeColor(Theme::GRAY); + mColors[BROWN] = getThemeColor(Theme::BROWN); + mForegroundColor = getThemeColor(Theme::BROWSERBOX); } BrowserBox::~BrowserBox() |