summaryrefslogtreecommitdiff
path: root/wx+/mouse_move_dlg.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:22:36 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:22:36 +0200
commitecb1524f8da7901338b263384fed3c612f117b4c (patch)
treee7e06423fe27ea5ab45f27fc4b39ae597ba72490 /wx+/mouse_move_dlg.cpp
parent5.10 (diff)
downloadFreeFileSync-ecb1524f8da7901338b263384fed3c612f117b4c.tar.gz
FreeFileSync-ecb1524f8da7901338b263384fed3c612f117b4c.tar.bz2
FreeFileSync-ecb1524f8da7901338b263384fed3c612f117b4c.zip
5.11
Diffstat (limited to 'wx+/mouse_move_dlg.cpp')
-rw-r--r--wx+/mouse_move_dlg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/wx+/mouse_move_dlg.cpp b/wx+/mouse_move_dlg.cpp
index e64e5da1..5c2a0a97 100644
--- a/wx+/mouse_move_dlg.cpp
+++ b/wx+/mouse_move_dlg.cpp
@@ -26,9 +26,9 @@ template <class Fun> inline
void forEachChild(wxWindow& parent, Fun f)
{
wxWindowList& wl = parent.GetChildren();
- for (auto iter = wl.begin(); iter != wl.end(); ++iter) //yet another wxWidgets bug keeps us from using std::for_each
+ for (auto it = wl.begin(); it != wl.end(); ++it) //yet another wxWidgets bug keeps us from using std::for_each
{
- wxWindow& wnd = **iter;
+ wxWindow& wnd = **it;
f(wnd);
forEachChild(wnd, f);
}
bgstack15