[GRASS-SVN] r39395 - in grass/trunk: include lib/vector/Vlib

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Oct 4 10:46:16 EDT 2009


Author: martinl
Date: 2009-10-04 10:46:16 -0400 (Sun, 04 Oct 2009)
New Revision: 39395

Modified:
   grass/trunk/include/vector.h
   grass/trunk/lib/vector/Vlib/simple_features.c
Log:
fix prototype names (SFA)


Modified: grass/trunk/include/vector.h
===================================================================
--- grass/trunk/include/vector.h	2009-10-04 14:36:17 UTC (rev 39394)
+++ grass/trunk/include/vector.h	2009-10-04 14:46:16 UTC (rev 39395)
@@ -421,8 +421,8 @@
 int Vect_sfa_line_dimension(int);
 char *Vect_sfa_line_geometry_type(const struct line_pnts *, int);
 int Vect_sfa_line_astext(const struct line_pnts *, int, int, int, FILE *);
-int Vect_sfa_is_line_is_simple(const struct line_pnts *, int, int);
-int Vect_sfa_is_line_is_closed(const struct line_pnts *, int, int);
+int Vect_sfa_is_line_simple(const struct line_pnts *, int, int);
+int Vect_sfa_is_line_closed(const struct line_pnts *, int, int);
 
 /*
  * Internal functions, MUST NOT be used in modules

Modified: grass/trunk/lib/vector/Vlib/simple_features.c
===================================================================
--- grass/trunk/lib/vector/Vlib/simple_features.c	2009-10-04 14:36:17 UTC (rev 39394)
+++ grass/trunk/lib/vector/Vlib/simple_features.c	2009-10-04 14:46:16 UTC (rev 39395)
@@ -195,7 +195,7 @@
   \return 0  feature not simple
   \return -1 feature type not supported (GV_POINT, GV_CENTROID, ...)
 */
-int Vect_sfa_is_line_is_simple(const struct line_pnts *Points, int type, int with_z)
+int Vect_sfa_is_line_simple(const struct line_pnts *Points, int type, int with_z)
 {
     int sftype;
     



More information about the grass-commit mailing list