diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-01-20 20:43:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-01-20 23:48:07 +0300 |
commit | 2744e4fa8f39cd06bfe557a5a3881830bd11501c (patch) | |
tree | 2ec96c6ee820cfe0e5e76480fe828501bf555a4b /src/guichan/gui.cpp | |
parent | 531433248fbad49e2b8e9d90de9855f3ea9b2257 (diff) | |
download | plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.gz plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.bz2 plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.xz plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.zip |
Last part with FOR_EACH changes.
Diffstat (limited to 'src/guichan/gui.cpp')
-rw-r--r-- | src/guichan/gui.cpp | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/guichan/gui.cpp b/src/guichan/gui.cpp index fa54d9008..a72b70f84 100644 --- a/src/guichan/gui.cpp +++ b/src/guichan/gui.cpp @@ -284,11 +284,8 @@ namespace gcn // Check if the widget is present in the "widget with mouse" queue. bool widgetIsPresentInQueue = false; - for (std::deque<Widget*>::const_iterator - iter = mWidgetWithMouseQueue.begin(), - iter_end = mWidgetWithMouseQueue.end(); - iter != iter_end; - ++ iter) + FOR_EACH (std::deque<Widget*>::const_iterator, + iter, mWidgetWithMouseQueue) { if (*iter == widget) { @@ -801,11 +798,8 @@ namespace gcn // Check if the widget is present in the "widget with mouse" queue. bool widgetIsPresentInQueue = false; - for (std::deque<Widget*>::const_iterator - iter = mWidgetWithMouseQueue.begin(), - iter_end = mWidgetWithMouseQueue.end(); - iter != iter_end; - ++ iter) + FOR_EACH (std::deque<Widget*>::const_iterator, + iter, mWidgetWithMouseQueue) { if (*iter == widget) { |