Changeset 70204


Ignore:
Timestamp:
Jan 2, 2017, 8:41:11 AM (8 years ago)
Author:
martinl
Message:

v.out.ogr: define output as G_OPT_F_OUTPUT (reason: most of users want to export shapefiles or file based formats, the GUI currently lacks special widget as for export, so plain text widget is used. After this change at least browse button is available. PostGIS connection string can be typed manually.) This issue should be solved in the future by new GUI widget.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • grass/trunk/vector/v.out.ogr/args.c

    r63119 r70204  
    2222    options->type->guisection = _("Selection");
    2323
    24     options->dsn = G_define_option();
    25     options->dsn->key = "output";
    26     options->dsn->type = TYPE_STRING;
    27     options->dsn->required = YES;
     24    options->dsn = G_define_standard_option(G_OPT_F_OUTPUT);
    2825    options->dsn->label = _("Name of output OGR datasource");
    2926    options->dsn->description =
Note: See TracChangeset for help on using the changeset viewer.