[GRASS-SVN] r43251 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Aug 24 21:07:36 EDT 2010


Author: hamish
Date: 2010-08-25 01:07:36 +0000 (Wed, 25 Aug 2010)
New Revision: 43251

Modified:
   grass/trunk/gui/wxpython/gui_modules/mcalc_builder.py
Log:
hone in on right number of ampersands (merge from devbr6)

Modified: grass/trunk/gui/wxpython/gui_modules/mcalc_builder.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/mcalc_builder.py	2010-08-25 01:06:58 UTC (rev 43250)
+++ grass/trunk/gui/wxpython/gui_modules/mcalc_builder.py	2010-08-25 01:07:36 UTC (rev 43251)
@@ -176,13 +176,13 @@
         self.btn['compl'].SetToolTipString(_('one\'s complement'))
         self.btn['not'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "!")
         self.btn['not'].SetToolTipString(_('NOT'))
-        self.btn['andbit'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = '&&&')
+        self.btn['andbit'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = '&&')
         self.btn['andbit'].SetToolTipString(_('bitwise AND'))
         self.btn['orbit'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "|")
         self.btn['orbit'].SetToolTipString(_('bitwise OR'))
-        self.btn['and'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "&&&&&")
+        self.btn['and'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "&&&&")
         self.btn['and'].SetToolTipString(_('logical AND'))
-        self.btn['andnull'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "&&&&&&&")
+        self.btn['andnull'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "&&&&&&")
         self.btn['andnull'].SetToolTipString(_('logical AND (ignores NULLs)'))
         self.btn['or'] = wx.Button(parent = self.panel, id = wx.ID_ANY, label = "||")
         self.btn['or'].SetToolTipString(_('logical OR'))



More information about the grass-commit mailing list