diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-23 02:46:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-23 02:48:43 +0300 |
commit | a69a87c5a81ddbf25a25c5549259da550d207bda (patch) | |
tree | 59f1a919b327912395ab84bab1684118bf0379be /src/guichan/widgets/window.cpp | |
parent | e646f2fae3f323b7faa26aa9540524d1765211ee (diff) | |
download | plus-a69a87c5a81ddbf25a25c5549259da550d207bda.tar.gz plus-a69a87c5a81ddbf25a25c5549259da550d207bda.tar.bz2 plus-a69a87c5a81ddbf25a25c5549259da550d207bda.tar.xz plus-a69a87c5a81ddbf25a25c5549259da550d207bda.zip |
Improve a bit iterators again.
Diffstat (limited to 'src/guichan/widgets/window.cpp')
-rw-r--r-- | src/guichan/widgets/window.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/guichan/widgets/window.cpp b/src/guichan/widgets/window.cpp index c7ed8a69e..1a2279811 100644 --- a/src/guichan/widgets/window.cpp +++ b/src/guichan/widgets/window.cpp @@ -189,10 +189,9 @@ namespace gcn void Window::resizeToContent() { - WidgetListConstIterator it; - int w = 0, h = 0; - for (it = mWidgets.begin(); it != mWidgets.end(); ++ it) + for (WidgetListConstIterator it = mWidgets.begin(); + it != mWidgets.end(); ++ it) { if ((*it)->getX() + (*it)->getWidth() > w) w = (*it)->getX() + (*it)->getWidth(); |