Skip to content

Commit fe5f813

Browse files
committed
Avoid missing argument description warnings when loading GRASS layers
1 parent 3e9982f commit fe5f813

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/providers/grass/qgis.g.info.c

+9
Original file line numberDiff line numberDiff line change
@@ -57,39 +57,48 @@ int main( int argc, char **argv )
5757

5858
rast_opt = G_define_standard_option( G_OPT_R_INPUT );
5959
rast_opt->key = "rast";
60+
rast_opt->description = "rast";
6061
rast_opt->required = NO;
6162

6263
vect_opt = G_define_standard_option( G_OPT_V_INPUT );
6364
vect_opt->key = "vect";
65+
vect_opt->description = "vect";
6466
vect_opt->required = NO;
6567

6668
coor_opt = G_define_option();
6769
coor_opt->key = "coor";
70+
coor_opt->description = "coor";
6871
coor_opt->type = TYPE_DOUBLE;
6972
coor_opt->multiple = YES;
7073

7174
north_opt = G_define_option();
7275
north_opt->key = "north";
76+
north_opt->description = "north";
7377
north_opt->type = TYPE_STRING;
7478

7579
south_opt = G_define_option();
7680
south_opt->key = "south";
81+
south_opt->description = "south";
7782
south_opt->type = TYPE_STRING;
7883

7984
east_opt = G_define_option();
8085
east_opt->key = "east";
86+
east_opt->description = "east";
8187
east_opt->type = TYPE_STRING;
8288

8389
west_opt = G_define_option();
8490
west_opt->key = "west";
91+
west_opt->description = "west";
8592
west_opt->type = TYPE_STRING;
8693

8794
rows_opt = G_define_option();
8895
rows_opt->key = "rows";
96+
rows_opt->description = "rows";
8997
rows_opt->type = TYPE_INTEGER;
9098

9199
cols_opt = G_define_option();
92100
cols_opt->key = "cols";
101+
cols_opt->description = "cols";
93102
cols_opt->type = TYPE_INTEGER;
94103

95104
if ( G_parser( argc, argv ) )

0 commit comments

Comments
 (0)