summaryrefslogtreecommitdiff
path: root/src/gui/shoplistbox.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-02-10 17:26:15 +0100
committerPhilipp Sehmisch <crush@themanaworld.org>2009-02-10 17:30:19 +0100
commitd5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab (patch)
tree76e77269ec6afcaafb57558c1bf2b6a4f2b0e79a /src/gui/shoplistbox.cpp
parentc5fe99dcfd22b7e4d455ab8961d5f6c6210872d7 (diff)
downloadmana-client-d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab.tar.gz
mana-client-d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab.tar.bz2
mana-client-d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab.tar.xz
mana-client-d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab.zip
fixed capitalization of color member functions.
Diffstat (limited to 'src/gui/shoplistbox.cpp')
-rw-r--r--src/gui/shoplistbox.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp
index 66c12fc6..f44bf87b 100644
--- a/src/gui/shoplistbox.cpp
+++ b/src/gui/shoplistbox.cpp
@@ -64,9 +64,9 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics)
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 *graphics = static_cast<Graphics*>(gcnGraphics);