From 27f15965e13da246a888982f6ba277f24edbc660 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Tue, 26 Nov 2013 14:16:53 +0000 Subject: [PATCH] fixing shadowed var git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@75294 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/osx/cocoa/evtloop.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osx/cocoa/evtloop.mm b/src/osx/cocoa/evtloop.mm index 97276ae40d..3e43d778dc 100644 --- a/src/osx/cocoa/evtloop.mm +++ b/src/osx/cocoa/evtloop.mm @@ -440,7 +440,7 @@ bool wxModalEventLoop::ProcessIdle() // which could have logged new messages) wxLog::FlushActive(); #endif - bool needMore = event.MoreRequested(); + needMore = event.MoreRequested(); wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetFirst(); while (node)