[GRASS-SVN] r62942 - grass/trunk/display/d.thematic.area

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Nov 25 06:54:55 PST 2014


Author: martinl
Date: 2014-11-25 06:54:55 -0800 (Tue, 25 Nov 2014)
New Revision: 62942

Modified:
   grass/trunk/display/d.thematic.area/main.c
Log:
d.thematic.area: use standardized options (#2409)


Modified: grass/trunk/display/d.thematic.area/main.c
===================================================================
--- grass/trunk/display/d.thematic.area/main.c	2014-11-25 14:44:38 UTC (rev 62941)
+++ grass/trunk/display/d.thematic.area/main.c	2014-11-25 14:54:55 UTC (rev 62942)
@@ -83,12 +83,10 @@
 
     map_opt = G_define_standard_option(G_OPT_V_MAP);
 
-    column_opt = G_define_option();
-    column_opt->key = "column";
-    column_opt->type = TYPE_STRING;
+    column_opt = G_define_standard_option(G_OPT_DB_COLUMN);
     column_opt->required = YES;
     column_opt->description =
-	_("Data to be classified: column name or expression");
+	_("Name of attribute column to be classified");
 
     breaks_opt = G_define_option();
     breaks_opt->key = "breaks";
@@ -126,7 +124,7 @@
     colors_opt->type = TYPE_STRING;
     colors_opt->required = YES;
     colors_opt->multiple = YES;
-    colors_opt->description = _("Colors (one per class).");
+    colors_opt->description = _("Colors (one per class)");
     colors_opt->gisprompt = "old_color,color,color";
 
     field_opt = G_define_standard_option(G_OPT_V_FIELD);
@@ -138,19 +136,16 @@
     where_opt->guisection = _("Selection");
 
     bwidth_opt = G_define_option();
-    bwidth_opt->key = "bwidth";
+    bwidth_opt->key = "boundary_width";
     bwidth_opt->type = TYPE_INTEGER;
     bwidth_opt->answer = "0";
     bwidth_opt->guisection = _("Boundaries");
     bwidth_opt->description = _("Boundary width");
 
-    bcolor_opt = G_define_option();
-    bcolor_opt->key = "bcolor";
-    bcolor_opt->type = TYPE_STRING;
-    bcolor_opt->answer = DEFAULT_FG_COLOR;
-    bcolor_opt->description = _("Boundary color");
+    bcolor_opt = G_define_standard_option(G_OPT_C_FG);
+    bcolor_opt->key = "boundary_color";
+    bcolor_opt->label = _("Boundary color");
     bcolor_opt->guisection = _("Boundaries");
-    bcolor_opt->gisprompt = "old_color,color,color";
 
     legend_file_opt = G_define_standard_option(G_OPT_F_OUTPUT);
     legend_file_opt->key = "legendfile";



More information about the grass-commit mailing list