[geos-commits] r2095 - trunk/source/geom/prep

svn_geos at osgeo.org svn_geos at osgeo.org
Fri Dec 21 18:18:39 EST 2007


Author: mloskot
Date: 2007-12-21 18:18:39 -0500 (Fri, 21 Dec 2007)
New Revision: 2095

Modified:
   trunk/source/geom/prep/PreparedPolygonContainsProperly.cpp
Log:
Fixed extra qualifications in /geom/prep/PreparedPolygonContainsProperly.

Modified: trunk/source/geom/prep/PreparedPolygonContainsProperly.cpp
===================================================================
--- trunk/source/geom/prep/PreparedPolygonContainsProperly.cpp	2007-12-21 23:12:26 UTC (rev 2094)
+++ trunk/source/geom/prep/PreparedPolygonContainsProperly.cpp	2007-12-21 23:18:39 UTC (rev 2095)
@@ -59,8 +59,8 @@
 	if (segsIntersect) 
 		return false;
 	
-	if (	geom->getGeometryTypeId() == GeometryTypeId::GEOS_MULTIPOLYGON  
-		||	geom->getGeometryTypeId() == GeometryTypeId::GEOS_POLYGON )
+	if (	geom->getGeometryTypeId() == geos::geom::GEOS_MULTIPOLYGON  
+		||	geom->getGeometryTypeId() == geos::geom::GEOS_POLYGON )
 	{
 		// TODO: generalize this to handle GeometryCollections
 		bool isTargetGeomInTestArea = isAnyTargetComponentInTestArea( geom, prepPoly->getRepresentativePoints());



More information about the geos-commits mailing list