aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wince/CEgui/GUIElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/wince/CEgui/GUIElement.cpp')
-rw-r--r--backends/platform/wince/CEgui/GUIElement.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/platform/wince/CEgui/GUIElement.cpp b/backends/platform/wince/CEgui/GUIElement.cpp
index 241cf514f3..c8e68b87fd 100644
--- a/backends/platform/wince/CEgui/GUIElement.cpp
+++ b/backends/platform/wince/CEgui/GUIElement.cpp
@@ -98,19 +98,19 @@ bool GUIElement::drawn() {
return _drawn;
}
-int GUIElement::x() {
+int GUIElement::getX() {
return _x;
}
-int GUIElement::y() {
+int GUIElement::getY() {
return _y;
}
-int GUIElement::width() {
+int GUIElement::getWidth() {
return _width;
}
-int GUIElement::height() {
+int GUIElement::getHeight() {
return _height;
}