[GRASS-SVN] r51136 -
grass/branches/develbranch_6/gui/wxpython/gmodeler
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Mar 21 17:31:31 EDT 2012
Author: martinl
Date: 2012-03-21 14:31:31 -0700 (Wed, 21 Mar 2012)
New Revision: 51136
Modified:
grass/branches/develbranch_6/gui/wxpython/gmodeler/dialogs.py
Log:
wGUI/modeler: fix data dialog (remove unused variable)
(merge r51135 from trunk)
Modified: grass/branches/develbranch_6/gui/wxpython/gmodeler/dialogs.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gmodeler/dialogs.py 2012-03-21 21:28:04 UTC (rev 51135)
+++ grass/branches/develbranch_6/gui/wxpython/gmodeler/dialogs.py 2012-03-21 21:31:31 UTC (rev 51136)
@@ -52,8 +52,7 @@
label, etype = self._getLabel()
ElementDialog.__init__(self, parent, title, label = label, etype = etype)
- self.element = Select(parent = self.panel,
- type = prompt)
+ self.element = Select(parent = self.panel)
self.element.SetValue(shape.GetValue())
self.Bind(wx.EVT_BUTTON, self.OnOK, self.btnOK)
More information about the grass-commit
mailing list