27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From 2574ff9d5c6e72d01dca283e66436cd90a64324d Mon Sep 17 00:00:00 2001
|
|
From: Hannah von Reth <vonreth@kde.org>
|
|
Date: Sat, 5 Nov 2022 18:48:41 +0100
|
|
Subject: [PATCH 16/21] Fix build after
|
|
95290f66b806a307b8da1f72f8fc2c69801933d0
|
|
|
|
---
|
|
src/quick/items/qquickdrag.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/quick/items/qquickdrag.cpp b/src/quick/items/qquickdrag.cpp
|
|
index 3b50370355..383078b3b9 100644
|
|
--- a/src/quick/items/qquickdrag.cpp
|
|
+++ b/src/quick/items/qquickdrag.cpp
|
|
@@ -769,7 +769,7 @@ Qt::DropAction QQuickDragAttachedPrivate::startDrag(Qt::DropActions supportedAct
|
|
QMimeData *mimeData = new QMimeData();
|
|
|
|
for (auto it = externalMimeData.cbegin(), end = externalMimeData.cend(); it != end; ++it) {
|
|
- if (it.value().typeId() == QMetaType::QByteArray)
|
|
+ if (static_cast<QMetaType::Type>(it.value().type()) == QMetaType::QByteArray)
|
|
mimeData->setData(it.key(), it.value().toByteArray());
|
|
else
|
|
mimeData->setData(it.key(), it.value().toString().toUtf8());
|
|
--
|
|
2.39.0
|
|
|