[GRASS-SVN] r57852 - grass/trunk/lib/imagery

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Sep 27 01:33:30 PDT 2013


Author: turek
Date: 2013-09-27 01:33:30 -0700 (Fri, 27 Sep 2013)
New Revision: 57852

Modified:
   grass/trunk/lib/imagery/iscatt_core.c
Log:
wx.iscatt backend: removed unused parameter

Modified: grass/trunk/lib/imagery/iscatt_core.c
===================================================================
--- grass/trunk/lib/imagery/iscatt_core.c	2013-09-27 07:49:25 UTC (rev 57851)
+++ grass/trunk/lib/imagery/iscatt_core.c	2013-09-27 08:33:30 UTC (rev 57852)
@@ -436,7 +436,6 @@
 /*!
    \brief Computes scatter plots data from bands_rows.
 
-   \param region analysis region
    \param scatt_conds pointer to scScatts struct of type SC_SCATT_CONDITIONS, 
    			       where are selected areas (condtitions) stored
    \param f_cats_rasts_conds file which stores selected areas (conditions) from
@@ -451,8 +450,7 @@
    \return  0 on success
    \return -1 on failure
  */
-static inline int compute_scatts_from_chunk_row(struct Cell_head *region,
-						struct scCats *scatt_conds,
+static inline int compute_scatts_from_chunk_row(struct scCats *scatt_conds,
 						FILE ** f_cats_rasts_conds,
 						struct rast_row *bands_rows,
 						struct scCats *scatts,
@@ -830,7 +828,7 @@
 				    bands_rows[band_id].null_row, i_row);
 	}
 	if (compute_scatts_from_chunk_row
-	    (region, scatt_conds, f_cats_rasts_conds, bands_rows, scatts,
+	    (scatt_conds, f_cats_rasts_conds, bands_rows, scatts,
 	     fd_cats_rasts) == -1) {
 	    free_compute_scatts_data(fd_bands, bands_rows, n_a_bands,
 				     			 bands_ids, fd_cats_rasts,



More information about the grass-commit mailing list