aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Skoland <davidskoland@gmail.com>2020-11-11 12:06:06 +0100
committerDavid Skoland <david.skoland@qt.io>2020-11-18 10:15:17 +0100
commit56bbdccbb99cc9a08a71c3ee1154e764cbfa888b (patch)
tree53be988d854992bc58edef02d14bc7772963ea74
parentd63ad7efb56452e3ad019c38ddf887ddcc8d338a (diff)
Use metatype and remove unused variable
Change-Id: I709c6a74dc6a3eb0cdd3e94168921274f90df4a4 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
-rw-r--r--tests/auto/quick/qquicktableview/tst_qquicktableview.cpp3
-rw-r--r--tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp2
-rw-r--r--tests/auto/shared/qqmljsastdumper.cpp1
3 files changed, 2 insertions, 4 deletions
diff --git a/tests/auto/quick/qquicktableview/tst_qquicktableview.cpp b/tests/auto/quick/qquicktableview/tst_qquicktableview.cpp
index e9c9505d6c..ce77028841 100644
--- a/tests/auto/quick/qquicktableview/tst_qquicktableview.cpp
+++ b/tests/auto/quick/qquicktableview/tst_qquicktableview.cpp
@@ -2714,10 +2714,7 @@ void tst_QQuickTableView::checkSyncView_pageFlicking()
// needs to rebuild. This, in turn, will eventually rebuild the
// sync children as well when they sync up later.
LOAD_TABLEVIEW("syncviewsimple.qml");
- GET_QML_TABLEVIEW(tableViewH);
- GET_QML_TABLEVIEW(tableViewV);
GET_QML_TABLEVIEW(tableViewHV);
- QQuickTableView *views[] = {tableViewH, tableViewV, tableViewHV};
auto model = TestModelAsVariant(100, 100);
diff --git a/tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp b/tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp
index 8bc9700fbe..746f27447b 100644
--- a/tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp
+++ b/tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp
@@ -4373,7 +4373,7 @@ void tst_qquickvisualdatamodel::readFromProxyObject()
auto *window = qobject_cast<QQuickWindow *>(obj.get());
QVERIFY(window);
- QCOMPARE(window->property("name").type(), QMetaType::QString);
+ QCOMPARE(window->property("name").metaType(), QMetaType(QMetaType::QString));
QTRY_VERIFY(window->property("name").toString() != QLatin1String("wrong"));
}
diff --git a/tests/auto/shared/qqmljsastdumper.cpp b/tests/auto/shared/qqmljsastdumper.cpp
index 9573e9bec1..3ffb7519e3 100644
--- a/tests/auto/shared/qqmljsastdumper.cpp
+++ b/tests/auto/shared/qqmljsastdumper.cpp
@@ -423,6 +423,7 @@ void AstDumper::endVisit(UiAnnotationList *) { stop("UiAnnotationList"); }
// QQmlJS
bool AstDumper::visit(AST::TypeExpression *el) {
+ Q_UNUSED(el);
start("TypeExpression");
return true;
}