summaryrefslogtreecommitdiff
path: root/src/gui/table.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/table.cpp
parentd5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab (diff)
downloadMana-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.cpp12
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));