[QGIS Commit] r10259 - branches/vector_overlay_branch/src/core/pal

svn_qgis at osgeo.org svn_qgis at osgeo.org
Tue Mar 3 11:02:21 EST 2009


Author: mhugent
Date: 2009-03-03 11:02:21 -0500 (Tue, 03 Mar 2009)
New Revision: 10259

Modified:
   branches/vector_overlay_branch/src/core/pal/pointset.h
Log:
fix for build error on Mac

Modified: branches/vector_overlay_branch/src/core/pal/pointset.h
===================================================================
--- branches/vector_overlay_branch/src/core/pal/pointset.h	2009-03-03 12:05:05 UTC (rev 10258)
+++ branches/vector_overlay_branch/src/core/pal/pointset.h	2009-03-03 16:02:21 UTC (rev 10259)
@@ -100,28 +100,30 @@
         friend void releaseAllInIndex (RTree<PointSet*, double, 2, double> *obstacles);
         friend bool releaseCallback (PointSet *pset, void *ctx);
         friend bool filteringCallback (PointSet*, void*);
-    protected:
+    public:
         int nbPoints;
         double *x;
         double *y;   // points order is counterclockwise
+		int type;
 
+	protected:
+
         int *status;   // -1 means inside the bbox, +1 means outside and 0 is either in either out
         int *cHull;
         int cHullSize;
 
-        int type;
+        
 
         //PointSet *parent;
 
         PointSet* holeOf;
         PointSet* parent;
 
+public:
         PointSet (double x, double y);
 
         PointSet (PointSet &ps);
 
-
-//public:
         double xmin;
         double xmax;
         double ymin;



More information about the QGIS-commit mailing list