Browse Source

TGIS C-API modifications.

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@58588 15284696-431f-4ddb-bdfa-cd5b030d7da7
Soeren Gebbert 11 years ago
parent
commit
cb34fa82e8
1 changed files with 3 additions and 3 deletions
  1. 3 3
      include/temporal.h

+ 3 - 3
include/temporal.h

@@ -56,7 +56,7 @@ typedef struct _tgisMapList
     /*!
       \brief Array of tgisMap struct's
     */
-    tgisMap **a;
+    tgisMap **values;
     /*!
       \brief Number of tgisMap struct's in the list
     */
@@ -74,7 +74,7 @@ tgisMapList * tgis_new_map_list();
 /*! Insert a new map to the map list */
 void tgis_map_list_insert(tgisMapList *list, char *name, char*mapset, struct TimeStamp *ts);
 /*! Add a new map to the map list */
-void tgis_map_list_add(tgisMap *map);
+void tgis_map_list_add(tgisMapList *list, tgisMap *map);
 
 /*!Spatio temporal extent as double values
  
@@ -113,7 +113,7 @@ typedef struct _tgisDatasetList
     /*!
       \brief Array of tgisDataset structs
     */
-    struct _tgisDataset **a;
+    struct _tgisDataset **values;
     /*!
       \brief Number of tgisDataset structs in the list
     */