From f59eb3b2194826c73f56161497f4004b2313efa2 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 5 Feb 2004 00:19:57 +0000 Subject: renamed (Const)Iterator to (const_)iterator; changed size() to return an uint svn-id: r12722 --- backends/wince/CEgui/Panel.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'backends/wince/CEgui') 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; -- cgit v1.2.3