diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-10 17:39:17 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-10 17:39:17 +0100 |
commit | 9b4febf79ecd220807d4a462d5945aa0aa561269 (patch) | |
tree | 42c9c5d472ce812f69da98938667df415c8450c2 /src/gui/table.cpp | |
parent | d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab (diff) | |
download | mana-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.gz mana-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.bz2 mana-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.xz mana-9b4febf79ecd220807d4a462d5945aa0aa561269.zip |
Fixed some accidental capitalization errors
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 a5b4ace0..1ee9da0f 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)); |