diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-10 17:26:15 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-10 17:30:19 +0100 |
commit | d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab (patch) | |
tree | 76e77269ec6afcaafb57558c1bf2b6a4f2b0e79a /src/gui/listbox.cpp | |
parent | c5fe99dcfd22b7e4d455ab8961d5f6c6210872d7 (diff) | |
download | mana-d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab.tar.gz mana-d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab.tar.bz2 mana-d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab.tar.xz mana-d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab.zip |
fixed capitalization of color member functions.
Diffstat (limited to 'src/gui/listbox.cpp')
-rw-r--r-- | src/gui/listbox.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/listbox.cpp b/src/gui/listbox.cpp index 118dbac1..6edaba7d 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)); |