We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d14b0e commit 417de81Copy full SHA for 417de81
src/providers/grass/qgsgrassprovider.cpp
@@ -1524,11 +1524,12 @@ bool QgsGrassProvider::closeEdit( bool newMap )
1524
// TODO: Is it necessary for build/close ?
1525
G__setenv(( char * ) "MAPSET", map->mapset.toAscii().data() );
1526
1527
- Vect_build_partial( map->map, GV_BUILD_NONE, NULL );
1528
#if defined(GRASS_VERSION_MAJOR) && defined(GRASS_VERSION_MINOR) && \
1529
( ( GRASS_VERSION_MAJOR == 6 && GRASS_VERSION_MINOR >= 4 ) || GRASS_VERSION_MAJOR > 6 )
+ Vect_build_partial( map->map, GV_BUILD_NONE );
1530
Vect_build( map.map );
1531
#else
1532
+ Vect_build_partial( map->map, GV_BUILD_NONE, NULL );
1533
Vect_build( map->map, stderr );
1534
#endif
1535
0 commit comments