~ubuntu-branches/ubuntu/intrepid/grass/intrepid

« back to all changes in this revision

Viewing changes to general/g.region/cmd/main.c

  • Committer: Bazaar Package Importer
  • Author(s): Noèl Köthe
  • Date: 2008-04-06 17:08:21 UTC
  • mfrom: (1.1.5 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080406170821-7l3d3ulh4g8crwcs
Tags: 6.2.3-2.1
* NMU during credativ BSP 2008
* using patch from Moritz Muehlenhoff <jmm@inutil.org> to fix
  FTBFS with GCC 4.3: missing #includes
  (closes: #461673)

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
        flag.gprint = G_define_flag();
131
131
        flag.gprint->key         = 'g';
132
132
        flag.gprint->description = _("Print the current region (shell script style)");
133
 
        flag.gprint->guisection  = _("Print;Shell Script");
 
133
        flag.gprint->guisection  = _("Print");
134
134
 
135
135
        flag.bbox = G_define_flag();
136
136
        flag.bbox->key         = 'b';
137
137
        flag.bbox->description = _("Print the maximum bounding box in lat/long on WGS84 (-g mode only)");
138
 
        flag.bbox->guisection  = _("Print;Shell Script");
 
138
        flag.bbox->guisection  = _("Print");
139
139
 
140
140
        /* parameters */
141
141