From dd4fe5eef6c8f56b7a1fa6653a81f554db30f09e Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sun, 8 Mar 2015 16:19:51 +0100 Subject: [PATCH] Fix define-check for QtQuickWidgets. --- autotests/proxymodeltestapp/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autotests/proxymodeltestapp/mainwindow.cpp b/autotests/proxymodeltestapp/mainwindow.cpp index b12f6ff..948d44d 100644 --- a/autotests/proxymodeltestapp/mainwindow.cpp +++ b/autotests/proxymodeltestapp/mainwindow.cpp @@ -42,7 +42,7 @@ #include "lessthanwidget.h" #include "matchcheckingwidget.h" #include "kidentityproxymodelwidget.h" -#ifdef QT_QUICK_LIB +#ifdef QT_QUICKWIDGETS_LIB #include "selectioninqmlwidget.h" #endif @@ -54,7 +54,7 @@ MainWindow::MainWindow() : QMainWindow() tabWidget->addTab(new MatchCheckingWidget(), "Match Checking PM"); tabWidget->addTab(new DescendantProxyModelWidget(), "descendant PM"); tabWidget->addTab(new SelectionProxyWidget(), "selection PM"); -#ifdef QT_QUICK_LIB +#ifdef QT_QUICKWIDGETS_LIB tabWidget->addTab(new SelectionInQmlWidget(), "selection PM in QML"); #endif tabWidget->addTab(new KIdentityProxyModelWidget(), "Identity PM");