aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorMarco Bubke <marco.bubke@qt.io>2020-08-24 15:21:50 +0200
committerMichael Winkelmann <michael.winkelmann@qt.io>2020-08-25 08:22:08 +0000
commit7962dbb413d6a74a0d518d165bf70a1ba6f250c2 (patch)
tree1081354d9da8be7e4885c7c68a399a75ce0f1130 /share
parent1bfd3bd8f2b289cbda1cf1b3a91004ca133f04a7 (diff)
QmlDesigner: Fix CapturedDataCommand
Change-Id: I7dbbce3c071440924550140002d81128befa3404 Reviewed-by: Michael Winkelmann <michael.winkelmann@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/qml/qmlpuppet/commands/captureddatacommand.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/share/qtcreator/qml/qmlpuppet/commands/captureddatacommand.h b/share/qtcreator/qml/qmlpuppet/commands/captureddatacommand.h
index c9d626e434..f682c035e9 100644
--- a/share/qtcreator/qml/qmlpuppet/commands/captureddatacommand.h
+++ b/share/qtcreator/qml/qmlpuppet/commands/captureddatacommand.h
@@ -98,6 +98,7 @@ public:
{
out << data.image;
out << data.nodeData;
+ out << data.nodeId;
return out;
}
@@ -106,6 +107,7 @@ public:
{
in >> data.image;
in >> data.nodeData;
+ in >> data.nodeId;
return in;
}