Skip to content

Commit 2cd989a

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@8818 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 9c3b2ca commit 2cd989a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/core/qgsapplication.cpp

Lines changed: 2 additions & 2 deletions
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)