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

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Aug 9 16:49:20 EDT 2011


Author: annakrat
Date: 2011-08-09 13:49:20 -0700 (Tue, 09 Aug 2011)
New Revision: 47513

Modified:
   grass/trunk/gui/wxpython/gui_modules/wxnviz.py
Log:
wxNviz: fix method name

Modified: grass/trunk/gui/wxpython/gui_modules/wxnviz.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/wxnviz.py	2011-08-09 20:30:34 UTC (rev 47512)
+++ grass/trunk/gui/wxpython/gui_modules/wxnviz.py	2011-08-09 20:49:20 UTC (rev 47513)
@@ -940,7 +940,7 @@
         
         return 1
 
-    def SetPointStyleThematic(self, id, layer, color = None, width = None, size = None, symbol = None):
+    def SetPointsStyleThematic(self, id, layer, color = None, width = None, size = None, symbol = None):
         """!Set thematic style for vector points"""
         GP_set_style_thematic(id, layer, color, width, size, symbol)
 
@@ -952,7 +952,7 @@
         """!Unset thematic style for vector points"""
         GP_unset_style_thematic(id)      
          
-    def UnsetPointStyleThematic(self, id):
+    def UnsetPointsStyleThematic(self, id):
         """!Unset thematic style for vector lines"""
         GV_unset_style_thematic(id)
         



More information about the grass-commit mailing list