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/table.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/table.cpp')
-rw-r--r-- | src/gui/table.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/table.cpp b/src/gui/table.cpp index 3bb6b6f3..a5b4ace0 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -325,10 +325,10 @@ void GuiTable::draw(gcn::Graphics* graphics) { bool valid; const int red = - (textcolor->getcolor('H', valid) >> 16) & 0xFF; + (textcolor->getColor('H', valid) >> 16) & 0xFF; const int green = - (textcolor->getcolor('H', valid) >> 8) & 0xFF; - const int blue = textcolor->getcolor('H', valid) & 0xFF; + (textcolor->getColor('H', valid) >> 8) & 0xFF; + const int blue = textcolor->getColor('H', valid) & 0xFF; const int alpha = mAlpha * 127; graphics->setColor(gcn::Color(red, green, blue, alpha)); @@ -347,10 +347,10 @@ void GuiTable::draw(gcn::Graphics* graphics) { bool valid; const int red = - (textcolor->getcolor('H', valid) >> 16) & 0xFF; + (textcolor->getColor('H', valid) >> 16) & 0xFF; const int green = - (textcolor->getcolor('H', valid) >> 8) & 0xFF; - const int blue = textcolor->getcolor('H', valid) & 0xFF; + (textcolor->getColor('H', valid) >> 8) & 0xFF; + const int blue = textcolor->getColor('H', valid) & 0xFF; const int alpha = mAlpha * 127; graphics->setColor(gcn::Color(red, green, blue, alpha)); |