[GRASS-SVN] r51683 - grass/trunk/display/d.rast.num

svn_grass at osgeo.org svn_grass at osgeo.org
Wed May 23 12:42:32 EDT 2012


Author: martinl
Date: 2012-05-23 09:42:31 -0700 (Wed, 23 May 2012)
New Revision: 51683

Modified:
   grass/trunk/display/d.rast.num/main.c
Log:
d.rast.num: window -> region (see r51681)

Modified: grass/trunk/display/d.rast.num/main.c
===================================================================
--- grass/trunk/display/d.rast.num/main.c	2012-05-23 16:36:09 UTC (rev 51682)
+++ grass/trunk/display/d.rast.num/main.c	2012-05-23 16:42:31 UTC (rev 51683)
@@ -171,14 +171,14 @@
     /* number of rows and cols in window */
 
     if ((nrows > 75) || (ncols > 75)) {
-	G_warning(_("Current window size: %dx%d\n"
-		    "Your current window setting may be too large. "
+	G_warning(_("Current region size: %d rows X %d cols\n"
+		    "Your current region setting may be too large. "
 		    "Cells displayed on your graphics window may be too "
 		    "small for cell category number to be visible."),
 		  nrows, ncols);
     }
     if ((nrows > 200) || (ncols > 200)) {
-	G_fatal_error(_("Aborting (window larger then 200x200 is not allowed)"));
+	G_fatal_error(_("Aborting (region larger then 200 rows X 200 cols is not allowed)"));
     }
 
     /* Setup driver and check important information */



More information about the grass-commit mailing list