Skip to content

Commit

Permalink
use forward slashes in GISBASE on win
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13000 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Mar 5, 2010
1 parent e51076f commit 3da5e17
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/providers/grass/qgsgrass.cpp
Expand Up @@ -55,6 +55,8 @@ QString GRASS_EXPORT QgsGrass::shortPath( const QString &path )
}

QString res = QString::fromUtf8( buf );
// GRASS wxpyton GUI fails on paths with backslash, Windows do support forward slashesin paths
res.replace ("\\", "/");
return res;
}
#endif
Expand Down

0 comments on commit 3da5e17

Please sign in to comment.