Skip to content
GitLab
Menu
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
b52f3cb2
Commit
b52f3cb2
authored
May 17, 2010
by
Marco Bubke
Committed by
Kai Koehne
May 17, 2010
Browse files
Don't do anything if the target object is already set
Task-Number: BAUHAUS-666 Reviewed-by: kkoehne
parent
2816ccbd
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/designercore/instances/qmlpropertychangesnodeinstance.cpp
View file @
b52f3cb2
...
...
@@ -89,6 +89,9 @@ QObject *QmlPropertyChangesObject::targetObject() const
void
QmlPropertyChangesObject
::
setTargetObject
(
QObject
*
object
)
{
if
(
m_targetObject
.
data
()
==
object
)
return
;
QMutableListIterator
<
QDeclarativeAction
>
actionIterator
(
m_qmlActionList
);
while
(
actionIterator
.
hasNext
())
{
QDeclarativeAction
&
qmlAction
=
actionIterator
.
next
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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