Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
fcb91a70
Commit
fcb91a70
authored
Feb 08, 2010
by
Erik Verbruggen
Browse files
Fixes to get the QML designer to compile against qt-qml.
parent
a6b1fb94
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/core/instances/qmlpropertychangesnodeinstance.cpp
View file @
fcb91a70
...
...
@@ -50,7 +50,7 @@ QmlStateOperation::ActionList QmlPropertyChangesObject::actions()
ActionList
list
;
foreach
(
const
QString
&
property
,
m_properties
.
keys
())
{
Action
a
(
m_targetObject
.
data
(),
property
,
m_properties
.
value
(
property
));
Qml
Action
a
(
m_targetObject
.
data
(),
property
,
m_properties
.
value
(
property
));
if
(
a
.
property
.
isValid
())
{
a
.
restore
=
restoreEntryValues
();
...
...
@@ -78,7 +78,7 @@ QmlStateOperation::ActionList QmlPropertyChangesObject::actions()
QmlMetaProperty
mProperty
=
metaProperty
(
property
);
if
(
mProperty
.
isValid
())
{
Action
a
;
Qml
Action
a
;
a
.
restore
=
restoreEntryValues
();
a
.
property
=
mProperty
;
a
.
fromValue
=
a
.
property
.
read
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment