aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSanthosh Kumar <santhosh.kumar.selvaraj@qt.io>2024-09-06 17:11:06 +0200
committerSanthosh Kumar <santhosh.kumar.selvaraj@qt.io>2024-09-06 23:21:59 +0200
commit7ddac741d3718771f81991829579981323b4c189 (patch)
treefa94f2e873670a15076a8b0edbb40be3861ba934
parenta06e7f21af85a8e918240b28691f5c70947bdc5d (diff)
Fix undefined reference issue for Color object in MessageDialog qml
The Color singleton object used in MessageDialog throws an undefined warning. Import the required module to resolve this issue. Pick-to: 6.8 6.7 6.5 Change-Id: I929d9839274b7393e36c6d0ffe159037a92e2423 Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io>
-rw-r--r--src/quickdialogs/quickdialogsquickimpl/qml/MessageDialog.qml1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/quickdialogs/quickdialogsquickimpl/qml/MessageDialog.qml b/src/quickdialogs/quickdialogsquickimpl/qml/MessageDialog.qml
index 0772a07121..e7776ab095 100644
--- a/src/quickdialogs/quickdialogsquickimpl/qml/MessageDialog.qml
+++ b/src/quickdialogs/quickdialogsquickimpl/qml/MessageDialog.qml
@@ -3,6 +3,7 @@
import QtQuick
import QtQuick.Controls
+import QtQuick.Controls.impl
import QtQuick.Dialogs
import QtQuick.Dialogs.quickimpl
import QtQuick.Layouts