[GRASS-SVN] r42213 - grass/trunk/gui/wxpython
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon May 10 09:58:34 EDT 2010
Author: martinl
Date: 2010-05-10 09:58:30 -0400 (Mon, 10 May 2010)
New Revision: 42213
Modified:
grass/trunk/gui/wxpython/gis_set.py
Log:
fix gis_set.py to reflect changes in ghelp
Modified: grass/trunk/gui/wxpython/gis_set.py
===================================================================
--- grass/trunk/gui/wxpython/gis_set.py 2010-05-10 12:53:37 UTC (rev 42212)
+++ grass/trunk/gui/wxpython/gis_set.py 2010-05-10 13:58:30 UTC (rev 42213)
@@ -34,7 +34,8 @@
if not os.getenv("GRASS_WXBUNDLED"):
globalvar.CheckForWx()
-from gui_modules import help
+import gui_modules.goutput
+from gui_modules.ghelp import HelpWindow
import wx
import wx.html
@@ -744,10 +745,10 @@
# help text in lib/init/helptext.html
file=os.path.join(self.gisbase, "docs", "html", "helptext.html")
- helpFrame = help.HelpWindow(parent=self, id=wx.ID_ANY,
- title=_("GRASS Quickstart"),
- size=(640, 480),
- file=file)
+ helpFrame = HelpWindow(parent=self, id=wx.ID_ANY,
+ title=_("GRASS Quickstart"),
+ size=(640, 480),
+ file=file)
helpFrame.Show(True)
event.Skip()
More information about the grass-commit
mailing list