Skip to content

Commit 7bf837c

Browse files
author
rblazek
committedMar 5, 2010
use forward slashes in GISBASE on win
git-svn-id: http://svn.osgeo.org/qgis/trunk@13000 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 29a658b commit 7bf837c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/providers/grass/qgsgrass.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ QString GRASS_EXPORT QgsGrass::shortPath( const QString &path )
5555
}
5656

5757
QString res = QString::fromUtf8( buf );
58+
// GRASS wxpyton GUI fails on paths with backslash, Windows do support forward slashesin paths
59+
res.replace ("\\", "/");
5860
return res;
5961
}
6062
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.