aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qquickfolderlistmodel
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qquickfolderlistmodel')
-rw-r--r--tests/auto/qml/qquickfolderlistmodel/tst_qquickfolderlistmodel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/qml/qquickfolderlistmodel/tst_qquickfolderlistmodel.cpp b/tests/auto/qml/qquickfolderlistmodel/tst_qquickfolderlistmodel.cpp
index 73e8a283c7..e03befe25a 100644
--- a/tests/auto/qml/qquickfolderlistmodel/tst_qquickfolderlistmodel.cpp
+++ b/tests/auto/qml/qquickfolderlistmodel/tst_qquickfolderlistmodel.cpp
@@ -169,8 +169,8 @@ void tst_qquickfolderlistmodel::resetFiltering()
QAbstractListModel *flm = qobject_cast<QAbstractListModel*>(component.create());
QVERIFY(flm != 0);
- connect(flm, SIGNAL(rowsRemoved(const QModelIndex&,int,int)),
- this, SLOT(removed(const QModelIndex&,int,int)));
+ connect(flm, SIGNAL(rowsRemoved(QModelIndex,int,int)),
+ this, SLOT(removed(QModelIndex,int,int)));
flm->setProperty("folder", testFileUrl("resetfiltering"));
QTRY_COMPARE(flm->property("count").toInt(),1); // should just be "test.txt" visible
@@ -204,8 +204,8 @@ void tst_qquickfolderlistmodel::refresh()
int count = flm->rowCount();
- connect(flm, SIGNAL(rowsRemoved(const QModelIndex&,int,int)),
- this, SLOT(removed(const QModelIndex&,int,int)));
+ connect(flm, SIGNAL(rowsRemoved(QModelIndex,int,int)),
+ this, SLOT(removed(QModelIndex,int,int)));
flm->setProperty("sortReversed", true);