Explorar el Código

wxGUI map calculator: fix function insert for int()

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@55618 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler hace 12 años
padre
commit
0762b0440a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      gui/wxpython/modules/mcalc_builder.py

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

@@ -82,7 +82,7 @@ class MapCalcFrame(wx.Frame):
             'if(x,a)':'if( , )',
             'if(x,a)':'if( , )',
             'if(x,a,b)':'if( , , )',
             'if(x,a,b)':'if( , , )',
             'if(x,a,b,c)':'if( , , , )',
             'if(x,a,b,c)':'if( , , , )',
-            'int(x)':'if()',
+            'int(x)':'int()',
             'isnull(x)':'isnull()',
             'isnull(x)':'isnull()',
             'log(x)':'log(',
             'log(x)':'log(',
             'log(x,b)':'log( , )',
             'log(x,b)':'log( , )',