Changeset 13775
- Timestamp:
- 02/13/08 08:37:37 (5 months ago)
- Files:
-
- trunk/gdal/ogr/ogrgeometry.cpp (modified) (4 diffs)
- trunk/gdal/wince/msvc80/gdalce_dll/gdalce_dll.vcproj (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/gdal/ogr/ogrgeometry.cpp
r13334 r13775 1437 1437 char *OGRGeometry::exportToKML() const 1438 1438 { 1439 #ifndef _WIN32_WCE 1439 1440 #ifdef OGR_ENABLED 1440 1441 return OGR_G_ExportToKML( (OGRGeometryH) this, NULL ); … … 1444 1445 return NULL; 1445 1446 #endif 1447 #else 1448 CPLError( CE_Failure, CPLE_AppDefined, 1449 "OGRGeometry::exportToKML() not supported in the WinCE build." ); 1450 return NULL; 1451 #endif 1446 1452 } 1447 1453 … … 1464 1470 char *OGRGeometry::exportToJson() const 1465 1471 { 1472 #ifndef _WIN32_WCE 1466 1473 #ifdef OGR_ENABLED 1467 1474 OGRGeometry* poGeometry = const_cast<OGRGeometry*>(this); … … 1470 1477 CPLError( CE_Failure, CPLE_AppDefined, 1471 1478 "OGRGeometry::exportToJson() not supported in builds without OGR drivers." ); 1479 return NULL; 1480 #endif 1481 #else 1482 CPLError( CE_Failure, CPLE_AppDefined, 1483 "OGRGeometry::exportToJson() not supported in the WinCE build." ); 1472 1484 return NULL; 1473 1485 #endif trunk/gdal/wince/msvc80/gdalce_dll/gdalce_dll.vcproj
r12438 r13775 908 908 </File> 909 909 <File 910 RelativePath="..\..\..\ogr\ogrsf_frmts\shape\shp_vsi.c" 911 > 912 </File> 913 <File 910 914 RelativePath="..\..\..\ogr\ogrsf_frmts\shape\shpopen.c" 911 915 >
