[GRASS-SVN] r44412 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Nov 25 03:32:04 EST 2010


Author: martinl
Date: 2010-11-25 00:32:04 -0800 (Thu, 25 Nov 2010)
New Revision: 44412

Modified:
   grass/trunk/gui/wxpython/gui_modules/preferences.py
Log:
fix #1223


Modified: grass/trunk/gui/wxpython/gui_modules/preferences.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/preferences.py	2010-11-24 20:27:46 UTC (rev 44411)
+++ grass/trunk/gui/wxpython/gui_modules/preferences.py	2010-11-25 08:32:04 UTC (rev 44412)
@@ -2180,7 +2180,7 @@
                  title=_('Manage access to mapsets'),
                  size = (350, 400),
                  style = wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER, **kwargs):
-        wx.Dialog.__init__(self, parent, id, title, pos, size, style)
+        wx.Dialog.__init__(self, parent, id, title, size = size, style = style)
 
         self.all_mapsets_ordered = utils.ListOfMapsets(get = 'ordered')
         self.accessible_mapsets  = utils.ListOfMapsets(get = 'accessible')



More information about the grass-commit mailing list