[GRASS-SVN] r38377 - grass/trunk/lib/gis
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Jul 13 01:07:54 EDT 2009
Author: hamish
Date: 2009-07-13 01:07:53 -0400 (Mon, 13 Jul 2009)
New Revision: 38377
Modified:
grass/trunk/lib/gis/parser.c
Log:
less ambiguous fn name
Modified: grass/trunk/lib/gis/parser.c
===================================================================
--- grass/trunk/lib/gis/parser.c 2009-07-12 10:16:04 UTC (rev 38376)
+++ grass/trunk/lib/gis/parser.c 2009-07-13 05:07:53 UTC (rev 38377)
@@ -151,7 +151,7 @@
static void define_keywords(void);
static void print_keywords(FILE *, void (*)(FILE *, const char *));
-static void gui(void);
+static void module_gui_wx(void);
static void usage_xml(void);
static void usage_html(void);
static void script(void);
@@ -873,7 +873,7 @@
/* If there are NO arguments, go interactive */
if (argc < 2 && st->has_required && !st->no_interactive && isatty(0)) {
- gui();
+ module_gui_wx();
return -1;
}
else if (argc < 2 && st->has_required && isatty(0)) {
@@ -982,7 +982,7 @@
/* Run the gui if it was specifically requested */
if (force_gui) {
- gui();
+ module_gui_wx();
return -1;
}
@@ -1866,7 +1866,7 @@
/*!
\brief Invoke GUI dialog
*/
-static void gui(void)
+static void module_gui_wx(void)
{
char script[GPATH_MAX];
More information about the grass-commit
mailing list