summaryrefslogtreecommitdiff
path: root/src/gui/checkbox.cpp
diff options
context:
space:
mode:
authorBjörn Steinbrink <B.Steinbrink@gmx.de>2005-08-25 18:06:19 +0000
committerBjörn Steinbrink <B.Steinbrink@gmx.de>2005-08-25 18:06:19 +0000
commit2c7d0b3518d72a7ab0726b72f7d2137e5944f049 (patch)
tree7080b1e32df54b8b44875df3609e94888939eb89 /src/gui/checkbox.cpp
parent529ba0581833b05921d8dc3336b02a3c6abd511a (diff)
downloadMana-2c7d0b3518d72a7ab0726b72f7d2137e5944f049.tar.gz
Mana-2c7d0b3518d72a7ab0726b72f7d2137e5944f049.tar.bz2
Mana-2c7d0b3518d72a7ab0726b72f7d2137e5944f049.tar.xz
Mana-2c7d0b3518d72a7ab0726b72f7d2137e5944f049.zip
Made our drawImage() method respect the clip area from the guichan graphics part. Removed some (now) obsolete code. Fixed compilation errors.
Diffstat (limited to 'src/gui/checkbox.cpp')
-rw-r--r--src/gui/checkbox.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/gui/checkbox.cpp b/src/gui/checkbox.cpp
index ce7762d9..7506d3c0 100644
--- a/src/gui/checkbox.cpp
+++ b/src/gui/checkbox.cpp
@@ -68,9 +68,6 @@ CheckBox::~CheckBox()
void CheckBox::drawBox(gcn::Graphics* graphics)
{
Image *box = NULL;
- int x, y;
-
- getAbsolutePosition(x, y);
if (mMarked) {
if (isEnabled()) {
@@ -84,9 +81,7 @@ void CheckBox::drawBox(gcn::Graphics* graphics)
box = checkBoxDisabled;
}
- x += 2;
- y += 2;
if (box != NULL) {
- dynamic_cast<Graphics*>(graphics)->drawImage(box, x, y);
+ dynamic_cast<Graphics*>(graphics)->drawImage(box, 2, 2);
}
}