Skip to content

Commit 63956c3

Browse files
author
jef
committed
use forward slashes also on windows - seems to confuse (OSGeo4w's) Python
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8818 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent f8979a1 commit 63956c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/qgsapplication.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ void QgsApplication::setPrefixPath(const QString thePrefixPath, bool useDefaultP
7878
#endif
7979
if (useDefaultPaths)
8080
{
81-
setPluginPath(mPrefixPath + QDir::separator() + QString(QGIS_PLUGIN_SUBDIR));
82-
setPkgDataPath(mPrefixPath + QDir::separator() + QString(QGIS_DATA_SUBDIR));
81+
setPluginPath(mPrefixPath + "/" + QString(QGIS_PLUGIN_SUBDIR));
82+
setPkgDataPath(mPrefixPath + "/" + QString(QGIS_DATA_SUBDIR));
8383
}
8484
}
8585

0 commit comments

Comments
 (0)