Remove a unecessary QDir::toNativeSeparators()

Reviewed-by: Tobias Hunger <qt-info@nokia.com>
This commit is contained in:
dt
2009-11-19 17:29:12 +01:00
parent 3bd33607af
commit 651eb33823
2 changed files with 1 additions and 2 deletions

View File

@@ -1275,7 +1275,7 @@ void QtVersion::setMsvcVersion(const QString &version)
void QtVersion::addToEnvironment(ProjectExplorer::Environment &env) const
{
env.set("QTDIR", QDir::toNativeSeparators(versionInfo().value("QT_INSTALL_DATA")));
env.prependOrSetPath(QDir::toNativeSeparators(versionInfo().value("QT_INSTALL_BINS")));
env.prependOrSetPath(versionInfo().value("QT_INSTALL_BINS"));
}
int QtVersion::uniqueId() const