Browse Source

v.vect.stats: map label/description UI fix

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@73120 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 7 years ago
parent
commit
0c7aec37f2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      vector/v.vect.stats/main.c

+ 2 - 2
vector/v.vect.stats/main.c

@@ -136,12 +136,12 @@ int main(int argc, char *argv[])
 
     point_opt = G_define_standard_option(G_OPT_V_INPUT);
     point_opt->key = "points";
-    point_opt->description = _("Name of existing vector map with points");
+    point_opt->label = _("Name of existing vector map with points");
     /* point_opt->guisection = _("Required"); */
       
     area_opt = G_define_standard_option(G_OPT_V_INPUT);
     area_opt->key = "areas";
-    area_opt->description = _("Name of existing vector map with areas");
+    area_opt->label = _("Name of existing vector map with areas");
     /* area_opt->guisection = _("Required"); */
 
     point_type_opt = G_define_standard_option(G_OPT_V_TYPE);