From 69c72221bb7491658d89f549cb01dcf5796e61c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A5re=20S=C3=A4rs?= Date: Sun, 17 Jan 2016 21:12:08 +0200 Subject: [PATCH] Fix Windows compilation (multi-string QStringLiteral -> QLatin1String) --- tests/proxymodeltestapp/selectioninqmlwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/proxymodeltestapp/selectioninqmlwidget.cpp b/tests/proxymodeltestapp/selectioninqmlwidget.cpp index fb87f89..8e2b8e3 100644 --- a/tests/proxymodeltestapp/selectioninqmlwidget.cpp +++ b/tests/proxymodeltestapp/selectioninqmlwidget.cpp @@ -54,5 +54,5 @@ SelectionInQmlWidget::SelectionInQmlWidget(QWidget *parent): QWidget(parent) quickView->engine()->rootContext()->setContextProperty(QStringLiteral("_model"), m_rootModel); quickView->engine()->rootContext()->setContextProperty(QStringLiteral("_selectionModel"), selectionTree->selectionModel()); - quickView->setSource(QUrl::fromLocalFile(QStringLiteral(SRC_DIR "/selection.qml"))); + quickView->setSource(QUrl::fromLocalFile(QLatin1String(SRC_DIR "/selection.qml"))); }