diff options
| author | Santhosh Kumar <santhosh.kumar.selvaraj@qt.io> | 2024-09-06 17:11:06 +0200 |
|---|---|---|
| committer | Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> | 2024-09-07 06:08:26 +0000 |
| commit | f9e5087152ebfa9fb0501899eba44b4c9411bfa0 (patch) | |
| tree | 7ca284cc7238e09050e1335f209e00bfa240dfcb | |
| parent | 3b5431b9ed40d928f7b8af957fa4ae276a866a94 (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.5
Change-Id: I929d9839274b7393e36c6d0ffe159037a92e2423
Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io>
(cherry picked from commit 7ddac741d3718771f81991829579981323b4c189)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
(cherry picked from commit 1830b880bebde8cb2c64d39937ea423236d735ea)
| -rw-r--r-- | src/quickdialogs/quickdialogsquickimpl/qml/MessageDialog.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/quickdialogs/quickdialogsquickimpl/qml/MessageDialog.qml b/src/quickdialogs/quickdialogsquickimpl/qml/MessageDialog.qml index 5dc7ee7873..562e931a69 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 |
