Skip to content

Commit

Permalink
use forward slashes also on windows - seems to confuse (OSGeo4w's) Py…
Browse files Browse the repository at this point in the history
…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.
4 changes: 2 additions & 2 deletions src/core/qgsapplication.cpp
Expand Up @@ -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));
}
}

Expand Down

0 comments on commit 63956c3

Please sign in to comment.