[GRASS-SVN] r47163 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Jul 18 13:31:34 EDT 2011
Author: martinl
Date: 2011-07-18 10:31:34 -0700 (Mon, 18 Jul 2011)
New Revision: 47163
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py
Log:
wxGUI/extension: ignore --q/v flags
(merge r47162 from trunk)
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py 2011-07-18 17:22:31 UTC (rev 47162)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py 2011-07-18 17:31:34 UTC (rev 47163)
@@ -15,7 +15,7 @@
- HelpWindow
- HelpPanel
-(C) 2008-2010 by the GRASS Development Team
+(C) 2008-2011 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.
@@ -824,7 +824,8 @@
desc = f.get('description', '')
if not name and not desc:
continue
- if name in ('l', 'f', 'g'):
+ print name
+ if name in ('l', 'f', 'g', 'quiet', 'verbose'):
continue
self.options[name] = wx.CheckBox(parent = self.panel, id = wx.ID_ANY,
label = desc)
More information about the grass-commit
mailing list