summaryrefslogtreecommitdiff
path: root/src/guichan
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-01-20 20:43:54 +0300
committerAndrei Karas <akaras@inbox.ru>2013-01-20 23:48:07 +0300
commit2744e4fa8f39cd06bfe557a5a3881830bd11501c (patch)
tree2ec96c6ee820cfe0e5e76480fe828501bf555a4b /src/guichan
parent531433248fbad49e2b8e9d90de9855f3ea9b2257 (diff)
downloadManaVerse-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.gz
ManaVerse-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.bz2
ManaVerse-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.xz
ManaVerse-2744e4fa8f39cd06bfe557a5a3881830bd11501c.zip
Last part with FOR_EACH changes.
Diffstat (limited to 'src/guichan')
-rw-r--r--src/guichan/gui.cpp14
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)
{