Changeset 62405


Ignore:
Timestamp:
Oct 26, 2014, 6:39:03 PM (10 years ago)
Author:
annakrat
Message:

g.remove: reorganize guisections, to better reflect the typical usage

File:
1 edited

Legend:

Unmodified
Added
Removed
  • grass/trunk/general/g.remove/main.c

    r62303 r62405  
    8080    opt.type->descriptions = M_get_option_desc(TRUE);
    8181    opt.type->guidependency = "pattern,exclude,names,ignore";
     82    opt.type->guisection = _("Basic");
    8283
    8384    opt.names = G_define_option();
     
    8788    opt.names->gisprompt = "old,element,element";
    8889    opt.names->description = _("File names separated by a comma");
    89     opt.names->guisection = _("Names");
     90    opt.names->guisection = _("Basic");
    9091
    9192    opt.ignore = G_define_option();
     
    9697    opt.ignore->description =
    9798        _("File names to ignore separated by a comma (default: none)");
    98     opt.ignore->guisection = _("Names");
     99    opt.ignore->guisection = _("Pattern");
    99100
    100101    opt.pattern = G_define_option();
     
    124125    flag.force = G_define_flag();
    125126    flag.force->key = 'f';
     127    flag.force->guisection = _("Basic");
    126128    flag.force->description =
    127129        _("Force removal (required for actual deletion of files)");
Note: See TracChangeset for help on using the changeset viewer.