[QGIS Commit] r13373 - trunk/qgis/src/core

svn_qgis at osgeo.org svn_qgis at osgeo.org
Sat Apr 24 15:55:33 EDT 2010


Author: jef
Date: 2010-04-24 15:55:32 -0400 (Sat, 24 Apr 2010)
New Revision: 13373

Modified:
   trunk/qgis/src/core/qgsgeometry.cpp
   trunk/qgis/src/core/qgsgeometry.h
Log:
fix windows build

Modified: trunk/qgis/src/core/qgsgeometry.cpp
===================================================================
--- trunk/qgis/src/core/qgsgeometry.cpp	2010-04-24 19:08:49 UTC (rev 13372)
+++ trunk/qgis/src/core/qgsgeometry.cpp	2010-04-24 19:55:32 UTC (rev 13373)
@@ -3752,7 +3752,7 @@
 }
 
 bool QgsGeometry::geosRelOp(
-  char GEOS_DLL( *op )( const GEOSGeometry*, const GEOSGeometry * ),
+  char( *op )( const GEOSGeometry*, const GEOSGeometry * ),
   QgsGeometry *a,
   QgsGeometry *b )
 {

Modified: trunk/qgis/src/core/qgsgeometry.h
===================================================================
--- trunk/qgis/src/core/qgsgeometry.h	2010-04-24 19:08:49 UTC (rev 13372)
+++ trunk/qgis/src/core/qgsgeometry.h	2010-04-24 19:55:32 UTC (rev 13373)
@@ -556,7 +556,7 @@
                                         int p0, int i0, const QgsPolyline &ring0,
                                         int p1, int i1, const QgsPolyline &ring1 );
 
-    static bool geosRelOp( char GEOS_DLL( *op )( const GEOSGeometry*, const GEOSGeometry * ),
+    static bool geosRelOp( char( *op )( const GEOSGeometry*, const GEOSGeometry * ),
                            QgsGeometry *a, QgsGeometry *b );
 
 



More information about the QGIS-commit mailing list