[GRASS-SVN] r52390 - grass/trunk/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jul 17 00:50:11 PDT 2012


Author: mmetz
Date: 2012-07-17 00:50:10 -0700 (Tue, 17 Jul 2012)
New Revision: 52390

Modified:
   grass/trunk/gui/wxpython/gui_core/goutput.py
Log:
fix for obscure bug: wxEvtHandler::ProcessPendingEvents(): Please call wxApp::ProcessPendingEvents() instead

Modified: grass/trunk/gui/wxpython/gui_core/goutput.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/goutput.py	2012-07-16 22:10:02 UTC (rev 52389)
+++ grass/trunk/gui/wxpython/gui_core/goutput.py	2012-07-17 07:50:10 UTC (rev 52390)
@@ -972,7 +972,7 @@
                 dialog.Close()
         
     def OnProcessPendingOutputWindowEvents(self, event):
-        self.ProcessPendingEvents()
+        wx.GetApp().ProcessPendingEvents()
 
     def ResetFocus(self):
         """!Reset focus"""



More information about the grass-commit mailing list