summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp')
-rw-r--r--tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp b/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp
index 4562ea3f..8308cd52 100644
--- a/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp
+++ b/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp
@@ -276,7 +276,7 @@ void tst_QDeclarativeView::resizemodegraphicswidget()
delete canvas;
}
-static void silentErrorsMsgHandler(QtMsgType, const char *)
+static void silentErrorsMsgHandler(QtMsgType, const QMessageLogContext &, const QString &)
{
}
@@ -284,9 +284,9 @@ void tst_QDeclarativeView::errors()
{
QDeclarativeView *canvas = new QDeclarativeView;
QVERIFY(canvas);
- QtMsgHandler old = qInstallMsgHandler(silentErrorsMsgHandler);
+ QtMessageHandler old = qInstallMessageHandler(silentErrorsMsgHandler);
canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/error1.qml"));
- qInstallMsgHandler(old);
+ qInstallMessageHandler(old);
QVERIFY(canvas->status() == QDeclarativeView::Error);
QVERIFY(canvas->errors().count() == 1);
delete canvas;