[GRASS-SVN] r43200 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Aug 22 01:53:37 EDT 2010


Author: hamish
Date: 2010-08-22 05:53:37 +0000 (Sun, 22 Aug 2010)
New Revision: 43200

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/mcalc_builder.py
Log:
< and <= tooltips were swapped (merge from trunk)

Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/mcalc_builder.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/mcalc_builder.py	2010-08-22 05:51:17 UTC (rev 43199)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/mcalc_builder.py	2010-08-22 05:53:37 UTC (rev 43200)
@@ -160,9 +160,9 @@
         self.btn['gteq'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = ">=")
         self.btn['gteq'].SetToolTipString(_('greater than or equal to'))
         self.btn['lt'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "<")
-        self.btn['lt'].SetToolTipString(_('less than or equal to'))
+        self.btn['lt'].SetToolTipString(_('less than'))
         self.btn['lteq'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "<=")
-        self.btn['lteq'].SetToolTipString(_('less than'))
+        self.btn['lteq'].SetToolTipString(_('less than or equal to'))
         self.btn['eq'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "==")
         self.btn['eq'].SetToolTipString(_('equal to'))
         self.btn['noteq'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "!=")



More information about the grass-commit mailing list