浏览代码

wxGUI/wxplot: SetLabel -> SetTitle

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@50321 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 年之前
父节点
当前提交
19948f2ae1

+ 1 - 1
gui/wxpython/modules/histogram.py

@@ -263,7 +263,7 @@ class HistogramFrame(wx.Frame):
     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))

+ 1 - 1
gui/wxpython/wxplot/histogram.py

@@ -35,7 +35,7 @@ class Histogram2Frame(BasePlotFrame):
         
         self.toolbar = Histogram2Toolbar(parent = self)
         self.SetToolBar(self.toolbar)
-        self.SetLabel(_("GRASS Histogramming Tool"))
+        self.SetTitle(_("GRASS Histogramming Tool"))
 
         #
         # Init variables

+ 1 - 1
gui/wxpython/wxplot/profile.py

@@ -48,7 +48,7 @@ class ProfileFrame(BasePlotFrame):
 
         self.toolbar = ProfileToolbar(parent = self)
         self.SetToolBar(self.toolbar)
-        self.SetLabel(_("GRASS Profile Analysis Tool"))
+        self.SetTitle(_("GRASS Profile Analysis Tool"))
         
         #
         # Init variables

+ 1 - 1
gui/wxpython/wxplot/scatter.py

@@ -36,7 +36,7 @@ class ScatterFrame(BasePlotFrame):
         
         self.toolbar = ScatterToolbar(parent = self)
         self.SetToolBar(self.toolbar)
-        self.SetLabel(_("GRASS Bivariate Scatterplot Tool"))
+        self.SetTitle(_("GRASS Bivariate Scatterplot Tool"))
 
         #
         # Init variables