浏览代码

wxNviz: fix method name

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@47513 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 13 年之前
父节点
当前提交
8abc76a59b
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      gui/wxpython/gui_modules/wxnviz.py

+ 2 - 2
gui/wxpython/gui_modules/wxnviz.py

@@ -940,7 +940,7 @@ class Nviz(object):
         
         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 @@ class Nviz(object):
         """!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)