[GRASS-SVN] r57760 - grass/trunk/gui/wxpython/iclass

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Sep 20 03:39:01 PDT 2013


Author: turek
Date: 2013-09-20 03:39:00 -0700 (Fri, 20 Sep 2013)
New Revision: 57760

Modified:
   grass/trunk/gui/wxpython/iclass/plots.py
Log:
wx.iclass: missing giface argument (to be used by scatter plot)

Modified: grass/trunk/gui/wxpython/iclass/plots.py
===================================================================
--- grass/trunk/gui/wxpython/iclass/plots.py	2013-09-20 10:31:12 UTC (rev 57759)
+++ grass/trunk/gui/wxpython/iclass/plots.py	2013-09-20 10:39:00 UTC (rev 57760)
@@ -28,10 +28,11 @@
     for each band and for one category. Coincidence plots show min max range
     of classes for each band.
     """
-    def __init__(self, parent, stats_data):
+    def __init__(self, parent, giface, stats_data):
         scrolled.ScrolledPanel.__init__(self, parent)
         
         self.SetupScrolling(scroll_x = False, scroll_y = True)
+        self._giface = giface
         self.parent = parent
         self.canvasList = []
         self.bandList = []



More information about the grass-commit mailing list