[mapserver-commits] r11080 - trunk/mapserver
svn at osgeo.org
svn at osgeo.org
Sat Mar 5 11:41:32 EST 2011
Author: tamas
Date: 2011-03-05 08:41:32 -0800 (Sat, 05 Mar 2011)
New Revision: 11080
Modified:
trunk/mapserver/HISTORY.TXT
trunk/mapserver/mapprimitive.h
Log:
Remove shapeObj.line, shapeObj.values, lineObj.point from the SWIG API which are redundant and undocumented. (#3269)
Modified: trunk/mapserver/HISTORY.TXT
===================================================================
--- trunk/mapserver/HISTORY.TXT 2011-03-05 13:51:09 UTC (rev 11079)
+++ trunk/mapserver/HISTORY.TXT 2011-03-05 16:41:32 UTC (rev 11080)
@@ -14,6 +14,9 @@
Current Version (SVN trunk):
----------------------------
+- Remove shapeObj.line, shapeObj.values, lineObj.point from the SWIG API
+ which are redundant and undocumented. (#3269)
+
- Remove map-oriented query modes (e.g. QUERYMAP). Use qformat parameter instead. (#3712)
- Implement single-pass query handling in mssql2008 driver as per RFC 65.
Modified: trunk/mapserver/mapprimitive.h
===================================================================
--- trunk/mapserver/mapprimitive.h 2011-03-05 13:51:09 UTC (rev 11079)
+++ trunk/mapserver/mapprimitive.h 2011-03-05 16:41:32 UTC (rev 11080)
@@ -56,7 +56,9 @@
%immutable;
#endif
int numpoints;
+#ifndef SWIG
pointObj *point;
+#endif
#ifdef SWIG
%mutable;
#endif
@@ -68,10 +70,9 @@
#endif
int numlines;
int numvalues;
+#ifndef SWIG
lineObj *line;
char **values;
-
-#ifndef SWIG
void *geometry;
void *renderer_cache;
#endif
More information about the mapserver-commits
mailing list