[GRASS-SVN] r50321 - in grass/trunk/gui/wxpython: modules wxplot
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jan 20 11:33:56 EST 2012
Author: martinl
Date: 2012-01-20 08:33:56 -0800 (Fri, 20 Jan 2012)
New Revision: 50321
Modified:
grass/trunk/gui/wxpython/modules/histogram.py
grass/trunk/gui/wxpython/wxplot/histogram.py
grass/trunk/gui/wxpython/wxplot/profile.py
grass/trunk/gui/wxpython/wxplot/scatter.py
Log:
wxGUI/wxplot: SetLabel -> SetTitle
Modified: grass/trunk/gui/wxpython/modules/histogram.py
===================================================================
--- grass/trunk/gui/wxpython/modules/histogram.py 2012-01-20 14:52:30 UTC (rev 50320)
+++ grass/trunk/gui/wxpython/modules/histogram.py 2012-01-20 16:33:56 UTC (rev 50321)
@@ -263,7 +263,7 @@
rendered onto canvas
"""
def __init__(self, parent = None, id = wx.ID_ANY,
- title = _("GRASS GIS Histogram of raster map"),
+ title = _("GRASS GIS Histogramming Tool (d.histogram)"),
style = wx.DEFAULT_FRAME_STYLE, **kwargs):
wx.Frame.__init__(self, parent, id, title, style = style, **kwargs)
self.SetIcon(wx.Icon(os.path.join(globalvar.ETCICONDIR, 'grass.ico'), wx.BITMAP_TYPE_ICO))
Modified: grass/trunk/gui/wxpython/wxplot/histogram.py
===================================================================
--- grass/trunk/gui/wxpython/wxplot/histogram.py 2012-01-20 14:52:30 UTC (rev 50320)
+++ grass/trunk/gui/wxpython/wxplot/histogram.py 2012-01-20 16:33:56 UTC (rev 50321)
@@ -35,7 +35,7 @@
self.toolbar = Histogram2Toolbar(parent = self)
self.SetToolBar(self.toolbar)
- self.SetLabel(_("GRASS Histogramming Tool"))
+ self.SetTitle(_("GRASS Histogramming Tool"))
#
# Init variables
Modified: grass/trunk/gui/wxpython/wxplot/profile.py
===================================================================
--- grass/trunk/gui/wxpython/wxplot/profile.py 2012-01-20 14:52:30 UTC (rev 50320)
+++ grass/trunk/gui/wxpython/wxplot/profile.py 2012-01-20 16:33:56 UTC (rev 50321)
@@ -48,7 +48,7 @@
self.toolbar = ProfileToolbar(parent = self)
self.SetToolBar(self.toolbar)
- self.SetLabel(_("GRASS Profile Analysis Tool"))
+ self.SetTitle(_("GRASS Profile Analysis Tool"))
#
# Init variables
Modified: grass/trunk/gui/wxpython/wxplot/scatter.py
===================================================================
--- grass/trunk/gui/wxpython/wxplot/scatter.py 2012-01-20 14:52:30 UTC (rev 50320)
+++ grass/trunk/gui/wxpython/wxplot/scatter.py 2012-01-20 16:33:56 UTC (rev 50321)
@@ -36,7 +36,7 @@
self.toolbar = ScatterToolbar(parent = self)
self.SetToolBar(self.toolbar)
- self.SetLabel(_("GRASS Bivariate Scatterplot Tool"))
+ self.SetTitle(_("GRASS Bivariate Scatterplot Tool"))
#
# Init variables
More information about the grass-commit
mailing list