[mapguide-commits] r1143 - trunk/MgDev/Server/src/Services/Feature

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Thu Mar 1 19:27:09 EST 2007


Author: tonyfang
Date: 2007-03-01 19:27:08 -0500 (Thu, 01 Mar 2007)
New Revision: 1143

Modified:
   trunk/MgDev/Server/src/Services/Feature/ServerGetSpatialContexts.cpp
Log:
- fixed comment
- added // NOXLATE to spatial context description string when overridden

Modified: trunk/MgDev/Server/src/Services/Feature/ServerGetSpatialContexts.cpp
===================================================================
--- trunk/MgDev/Server/src/Services/Feature/ServerGetSpatialContexts.cpp	2007-03-01 23:45:19 UTC (rev 1142)
+++ trunk/MgDev/Server/src/Services/Feature/ServerGetSpatialContexts.cpp	2007-03-02 00:27:08 UTC (rev 1143)
@@ -153,8 +153,8 @@
     // Desc for spatial context
     STRING desc = L"";
 
-    // Extent type
-    FdoSpatialContextExtentType extentType = FdoSpatialContextExtentType_Dynamic; // or should it be initialized to static?
+    // Extent type (initialized to dynamic)
+    FdoSpatialContextExtentType extentType = FdoSpatialContextExtentType_Dynamic;
 
     // Extent (Geometry data)
     FdoPtr<FdoByteArray> byteArray = NULL;
@@ -171,7 +171,7 @@
     if (coordSysOverridden)
     {
         srsWkt = csName;
-        desc = L"This coordinate system has been overridden.";
+        desc = L"This coordinate system has been overridden."; // NOXLATE
     }
     else if (spatialContextDefined && !coordSysOverridden)
     {



More information about the mapguide-commits mailing list