[QGIS Commit] r10068 - trunk/qgis/src/app

svn_qgis at osgeo.org svn_qgis at osgeo.org
Sat Jan 31 11:45:58 EST 2009


Author: jef
Date: 2009-01-31 11:45:58 -0500 (Sat, 31 Jan 2009)
New Revision: 10068

Modified:
   trunk/qgis/src/app/qgsattributetable.cpp
Log:
fix comparision

Modified: trunk/qgis/src/app/qgsattributetable.cpp
===================================================================
--- trunk/qgis/src/app/qgsattributetable.cpp	2009-01-31 16:28:00 UTC (rev 10067)
+++ trunk/qgis/src/app/qgsattributetable.cpp	2009-01-31 16:45:58 UTC (rev 10068)
@@ -264,7 +264,7 @@
         return 1;
       }
     }
-    else if ( compareValue = 0 )
+    else if ( compareValue == 0 )
     {
       return 0;
     }



More information about the QGIS-commit mailing list