From 0c65ffef9b021555c03081e4e60e91a268d46c98 Mon Sep 17 00:00:00 2001 From: Robin Burchell Date: Thu, 5 Jan 2017 21:07:35 +0100 Subject: QtQuickControls2: Use the newly-introduced qmlWarning instead of qmlInfo qmlInfo will shortly be returning info-level messages (as the name hints), rather than warning level messages. Change-Id: I94123464b12b30a4ba085cfb7b606bc26df9b76e Reviewed-by: Simon Hausmann --- src/imports/platform/qquickplatformmessagedialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/imports/platform/qquickplatformmessagedialog.cpp') diff --git a/src/imports/platform/qquickplatformmessagedialog.cpp b/src/imports/platform/qquickplatformmessagedialog.cpp index 40a94dcb..14184447 100644 --- a/src/imports/platform/qquickplatformmessagedialog.cpp +++ b/src/imports/platform/qquickplatformmessagedialog.cpp @@ -376,7 +376,7 @@ void QQuickPlatformMessageDialog::handleClick(QPlatformDialogHelper::StandardBut case QPlatformDialogHelper::Apply: emit applyClicked(); break; case QPlatformDialogHelper::Reset: emit resetClicked(); break; case QPlatformDialogHelper::RestoreDefaults: emit restoreDefaultsClicked(); break; - default: qmlInfo(this) << "unknown button" << button; break; + default: qmlWarning(this) << "unknown button" << button; break; } } -- cgit v1.2.3