aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/CEgui
diff options
context:
space:
mode:
authorMax Horn2004-02-05 00:19:57 +0000
committerMax Horn2004-02-05 00:19:57 +0000
commitf59eb3b2194826c73f56161497f4004b2313efa2 (patch)
tree5c070e2626f83d256fc161a8ec7e98ca2397af58 /backends/wince/CEgui
parentdc852177fb27b83620f0a4296cde0e1a8dec1f62 (diff)
downloadscummvm-rg350-f59eb3b2194826c73f56161497f4004b2313efa2.tar.gz
scummvm-rg350-f59eb3b2194826c73f56161497f4004b2313efa2.tar.bz2
scummvm-rg350-f59eb3b2194826c73f56161497f4004b2313efa2.zip
renamed (Const)Iterator to (const_)iterator; changed size() to return an uint
svn-id: r12722
Diffstat (limited to 'backends/wince/CEgui')
-rw-r--r--backends/wince/CEgui/Panel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/wince/CEgui/Panel.cpp b/backends/wince/CEgui/Panel.cpp
index d29f4004e2..2c7514af09 100644
--- a/backends/wince/CEgui/Panel.cpp
+++ b/backends/wince/CEgui/Panel.cpp
@@ -42,7 +42,7 @@ namespace CEGUI {
}
bool Panel::draw(SDL_Surface *surface) {
- ItemMap::ConstIterator iterator;
+ ItemMap::const_iterator iterator;
if (!_drawn && _visible) {
GUIElement::draw(surface);
for (iterator = _itemsMap.begin(); iterator != _itemsMap.end(); ++iterator) {
@@ -55,14 +55,14 @@ namespace CEGUI {
}
void Panel::forceRedraw() {
- ItemMap::ConstIterator iterator;
+ ItemMap::const_iterator iterator;
GUIElement::forceRedraw();
for (iterator = _itemsMap.begin(); iterator != _itemsMap.end(); ++iterator)
((GUIElement*)(iterator->_value))->forceRedraw();
}
bool Panel::action(int x, int y, bool pushed) {
- ItemMap::ConstIterator iterator;
+ ItemMap::const_iterator iterator;
bool result = false;
if (!checkInside(x, y))
return false;