summaryrefslogtreecommitdiff
path: root/src/gui/listbox.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-02-10 17:39:17 +0100
committerPhilipp Sehmisch <crush@themanaworld.org>2009-02-10 17:39:17 +0100
commit9b4febf79ecd220807d4a462d5945aa0aa561269 (patch)
tree42c9c5d472ce812f69da98938667df415c8450c2 /src/gui/listbox.cpp
parentd5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab (diff)
downloadmana-client-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.gz
mana-client-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.bz2
mana-client-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.xz
mana-client-9b4febf79ecd220807d4a462d5945aa0aa561269.zip
Fixed some accidental capitalization errors
Diffstat (limited to 'src/gui/listbox.cpp')
-rw-r--r--src/gui/listbox.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/listbox.cpp b/src/gui/listbox.cpp
index 6edaba7d..63e55e24 100644
--- a/src/gui/listbox.cpp
+++ b/src/gui/listbox.cpp
@@ -44,9 +44,9 @@ void ListBox::draw(gcn::Graphics *graphics)
mAlpha = config.getValue("guialpha", 0.8);
bool valid;
- const int red = (textcolor->getColor('H', valid) >> 16) & 0xFF;
- const int green = (textcolor->getColor('H', valid) >> 8) & 0xFF;
- const int blue = textcolor->getColor('H', valid) & 0xFF;
+ const int red = (textColor->getColor('H', valid) >> 16) & 0xFF;
+ const int green = (textColor->getColor('H', valid) >> 8) & 0xFF;
+ const int blue = textColor->getColor('H', valid) & 0xFF;
const int alpha = mAlpha * 255;
graphics->setColor(gcn::Color(red, green, blue, alpha));