We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 3796004 commit 97a72e4Copy full SHA for 97a72e4
src/providers/grass/qgsgrass.cpp
@@ -928,15 +928,17 @@ bool QgsGrass::isMapset ( QString path )
928
{
929
/* TODO: G_is_mapset() was added to GRASS 6.1 06-05-24,
930
enable its use after some period (others do update) */
931
+ /*
932
if ( QgsGrass::versionMajor() > 6 || QgsGrass::versionMinor() > 0 )
933
934
if ( G_is_mapset( path.toLocal8Bit().constData() ) ) return true;
935
}
936
else
937
938
+ */
939
QString windf = path + "/WIND";
940
if ( QFile::exists ( windf ) ) return true;
- }
941
+ //}
942
943
return false;
944
0 commit comments