[GRASS-SVN] r43226 - in grass/branches/releasebranch_6_4:
general/g.gui lib/init
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Aug 24 06:28:07 EDT 2010
Author: hamish
Date: 2010-08-24 10:28:07 +0000 (Tue, 24 Aug 2010)
New Revision: 43226
Modified:
grass/branches/releasebranch_6_4/general/g.gui/main.c
grass/branches/releasebranch_6_4/lib/init/init.sh
Log:
default GUI -> wxpython
Modified: grass/branches/releasebranch_6_4/general/g.gui/main.c
===================================================================
--- grass/branches/releasebranch_6_4/general/g.gui/main.c 2010-08-24 08:47:51 UTC (rev 43225)
+++ grass/branches/releasebranch_6_4/general/g.gui/main.c 2010-08-24 10:28:07 UTC (rev 43226)
@@ -41,7 +41,7 @@
type->key = "gui";
type->type = TYPE_STRING;
type->label = _("GUI type");
- type->description = _("Default value: GRASS_GUI if defined otherwise tcltk");
+ type->description = _("Default value: GRASS_GUI if defined otherwise wxpython");
type->descriptions = _("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;"
@@ -80,7 +80,7 @@
type->answer = G_store(gui_type_env);
}
else {
- type->answer = "tcltk";
+ type->answer = "wxpython";
}
}
Modified: grass/branches/releasebranch_6_4/lib/init/init.sh
===================================================================
--- grass/branches/releasebranch_6_4/lib/init/init.sh 2010-08-24 08:47:51 UTC (rev 43225)
+++ grass/branches/releasebranch_6_4/lib/init/init.sh 2010-08-24 10:28:07 UTC (rev 43226)
@@ -25,7 +25,7 @@
trap "echo 'User break!' ; exit" 2 3 15
# Set default GUI
-DEFAULT_GUI="tcltk"
+DEFAULT_GUI="wxpython"
# the following is only meant to be an internal variable for debugging this script.
# use 'g.gisenv set="DEBUG=[0-5]"' to turn GRASS debug mode on properly.
More information about the grass-commit
mailing list