[GRASS-SVN] r39279 - grass/branches/develbranch_6/general/g.gui
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Sep 22 00:07:24 EDT 2009
Author: hamish
Date: 2009-09-22 00:07:23 -0400 (Tue, 22 Sep 2009)
New Revision: 39279
Modified:
grass/branches/develbranch_6/general/g.gui/main.c
Log:
default gui -> wxpython
Modified: grass/branches/develbranch_6/general/g.gui/main.c
===================================================================
--- grass/branches/develbranch_6/general/g.gui/main.c 2009-09-21 21:42:58 UTC (rev 39278)
+++ grass/branches/develbranch_6/general/g.gui/main.c 2009-09-22 04:07:23 UTC (rev 39279)
@@ -41,12 +41,12 @@
type->key = "gui";
type->type = TYPE_STRING;
type->label = _("GUI type");
- type->description = _("Default value: GRASS_GUI if defined otherwise tcltk");
- type->descriptions = _("tcltk;Tcl/Tk based GUI - GIS Manager (gis.m);"
+ type->description = _("Default value: GRASS_GUI if defined, otherwise wxpython");
+ type->descriptions = _("wxpython;wxPython based next generation GUI;"
+ "tcltk;Tcl/Tk based GUI - GIS Manager (gis.m);"
"oldtcltk;Old Tcl/Tk based GUI - Display Manager (d.m);"
- "wxpython;wxPython based next generation GUI;"
"text;command line interface only");
- type->options = "tcltk,oldtcltk,wxpython,text";
+ type->options = "wxpython,tcltk,oldtcltk,text";
rc_file = G_define_standard_option(G_OPT_F_INPUT);
rc_file->key = "workspace";
@@ -80,7 +80,7 @@
type->answer = G_store(gui_type_env);
}
else {
- type->answer = "tcltk";
+ type->answer = "wxpython";
}
}
More information about the grass-commit
mailing list