[GRASS-SVN] r62757 - in grass/trunk/gui/wxpython: gmodeler lmgr

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Nov 16 04:51:02 PST 2014


Author: martinl
Date: 2014-11-16 04:51:02 -0800 (Sun, 16 Nov 2014)
New Revision: 62757

Modified:
   grass/trunk/gui/wxpython/gmodeler/model.py
   grass/trunk/gui/wxpython/lmgr/frame.py
Log:
wxGUI: fix ;File -> Run model'

Modified: grass/trunk/gui/wxpython/gmodeler/model.py
===================================================================
--- grass/trunk/gui/wxpython/gmodeler/model.py	2014-11-16 12:31:50 UTC (rev 62756)
+++ grass/trunk/gui/wxpython/gmodeler/model.py	2014-11-16 12:51:02 UTC (rev 62757)
@@ -18,7 +18,7 @@
  - model::WritePythonFile
  - model::ModelParamDialog
 
-(C) 2010-2013 by the GRASS Development Team
+(C) 2010-2014 by the GRASS Development Team
 
 This program is free software under the GNU General Public License
 (>=v2). Read the file COPYING that comes with GRASS for details.

Modified: grass/trunk/gui/wxpython/lmgr/frame.py
===================================================================
--- grass/trunk/gui/wxpython/lmgr/frame.py	2014-11-16 12:31:50 UTC (rev 62756)
+++ grass/trunk/gui/wxpython/lmgr/frame.py	2014-11-16 12:51:02 UTC (rev 62757)
@@ -517,7 +517,7 @@
         
         self.model = Model()
         self.model.LoadModel(filename)
-        self.model.Run(log = self._goutput, onDone = self.OnDone, parent = self)
+        self.model.Run(log = self.GetLogWindow(), onDone = self.OnDone, parent = self)
         
         dlg.Destroy()
         



More information about the grass-commit mailing list