Skip to content
Permalink
Browse files
use forward slashes also on windows - seems to confuse (OSGeo4w's) Py…
…thon

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8818 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jul 19, 2008
1 parent f8979a1 commit 63956c3
Showing 1 changed file with 2 additions and 2 deletions.
@@ -78,8 +78,8 @@ void QgsApplication::setPrefixPath(const QString thePrefixPath, bool useDefaultP
#endif
if (useDefaultPaths)
{
setPluginPath(mPrefixPath + QDir::separator() + QString(QGIS_PLUGIN_SUBDIR));
setPkgDataPath(mPrefixPath + QDir::separator() + QString(QGIS_DATA_SUBDIR));
setPluginPath(mPrefixPath + "/" + QString(QGIS_PLUGIN_SUBDIR));
setPkgDataPath(mPrefixPath + "/" + QString(QGIS_DATA_SUBDIR));
}
}

0 comments on commit 63956c3

Please sign in to comment.