diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-31 22:27:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-31 22:46:08 +0300 |
commit | 82ace39b426a843382a6a809e7b66487c1412494 (patch) | |
tree | c8434c5465d0f0a44aa1a4b438dbe4dfbce317f6 /src/gui/widgets/browserbox.cpp | |
parent | f355fe070293a3f80b33ee0bc0154b2fe767fc4d (diff) | |
download | plus-82ace39b426a843382a6a809e7b66487c1412494.tar.gz plus-82ace39b426a843382a6a809e7b66487c1412494.tar.bz2 plus-82ace39b426a843382a6a809e7b66487c1412494.tar.xz plus-82ace39b426a843382a6a809e7b66487c1412494.zip |
Fix code style and compilation under windows.
Diffstat (limited to 'src/gui/widgets/browserbox.cpp')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 1551ae81d..26d446060 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -536,8 +536,11 @@ int BrowserBox::calcHeight() const signed char c = row.at(start + 2); bool valid; - const gcn::Color col[2] = {getThemeCharColor(c, valid), - getThemeCharColor(c | 0x80, valid)}; + const gcn::Color col[2] = + { + getThemeCharColor(c, valid), + getThemeCharColor(c | 0x80, valid) + }; if (c == '>') { |