From 2744e4fa8f39cd06bfe557a5a3881830bd11501c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 20 Jan 2013 20:43:54 +0300 Subject: Last part with FOR_EACH changes. --- src/guichan/gui.cpp | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'src/guichan/gui.cpp') 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::const_iterator - iter = mWidgetWithMouseQueue.begin(), - iter_end = mWidgetWithMouseQueue.end(); - iter != iter_end; - ++ iter) + FOR_EACH (std::deque::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::const_iterator - iter = mWidgetWithMouseQueue.begin(), - iter_end = mWidgetWithMouseQueue.end(); - iter != iter_end; - ++ iter) + FOR_EACH (std::deque::const_iterator, + iter, mWidgetWithMouseQueue) { if (*iter == widget) { -- cgit v1.2.3-60-g2f50