[GRASS-SVN] r49753 -
grass/branches/develbranch_6/gui/wxpython/gmodeler
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Dec 14 13:12:01 EST 2011
Author: martinl
Date: 2011-12-14 10:12:01 -0800 (Wed, 14 Dec 2011)
New Revision: 49753
Modified:
grass/branches/develbranch_6/gui/wxpython/gmodeler/dialogs.py
Log:
wxGUI: fix import
Modified: grass/branches/develbranch_6/gui/wxpython/gmodeler/dialogs.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gmodeler/dialogs.py 2011-12-14 18:07:27 UTC (rev 49752)
+++ grass/branches/develbranch_6/gui/wxpython/gmodeler/dialogs.py 2011-12-14 18:12:01 UTC (rev 49753)
@@ -37,7 +37,7 @@
from gui_core.ghelp import SearchModuleWindow
from gui_core.prompt import GPromptSTC
from gui_core.forms import CmdPanel
-
+from gui_core.gselect import Select
from gmodeler.model import *
from grass.script import task as gtask
@@ -52,8 +52,8 @@
label, etype = self._getLabel()
ElementDialog.__init__(self, parent, title, label = label, etype = etype)
- self.element = gselect.Select(parent = self.panel,
- type = prompt)
+ self.element = Select(parent = self.panel,
+ type = prompt)
self.element.SetValue(shape.GetValue())
self.Bind(wx.EVT_BUTTON, self.OnOK, self.btnOK)
More information about the grass-commit
mailing list