diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-02-25 15:11:25 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-02-25 15:11:25 (GMT) |
commit | e572d707b92a5c8f3522a9d99579ca1352f7d961 (patch) | |
tree | 13f3269df830d0d7e6d4df1debd43e8aa495a867 /src/declarative | |
parent | 11e9386c5704fe1a008370e032e6f114a458a473 (diff) | |
download | Qt-e572d707b92a5c8f3522a9d99579ca1352f7d961.zip Qt-e572d707b92a5c8f3522a9d99579ca1352f7d961.tar.gz Qt-e572d707b92a5c8f3522a9d99579ca1352f7d961.tar.bz2 |
Fix compilation due to enabling of QStringBuilder throughout
Diffstat (limited to 'src/declarative')
-rw-r--r-- | src/declarative/qml/qdeclarativeengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativeengine.cpp b/src/declarative/qml/qdeclarativeengine.cpp index b4850a9..717857b 100644 --- a/src/declarative/qml/qdeclarativeengine.cpp +++ b/src/declarative/qml/qdeclarativeengine.cpp @@ -1408,7 +1408,7 @@ public: qmldirParser.parse(); foreach (const QDeclarativeDirParser::Plugin &plugin, qmldirParser.plugins()) { - QString resolvedFilePath = QDeclarativeEnginePrivate::get(engine)->resolvePlugin(dir + QDir::separator() + plugin.path, + QString resolvedFilePath = QDeclarativeEnginePrivate::get(engine)->resolvePlugin(QDir(dir + QDir::separator() + plugin.path), plugin.name); if (!resolvedFilePath.isEmpty()) |