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
Tobias Hunger
qt-creator
Commits
524f998c
Commit
524f998c
authored
Apr 19, 2010
by
Thomas Hartmann
Browse files
QmlDesigner: fixing memory leak
parent
24a9a22b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.cpp
View file @
524f998c
...
...
@@ -220,7 +220,7 @@ void PropertyEditorValue::registerDeclarativeTypes()
qmlRegisterType
<
QDeclarativePropertyMap
>
(
"Bauhaus"
,
1
,
0
,
"QDeclarativePropertyMap"
);
}
PropertyEditorNodeWrapper
::
PropertyEditorNodeWrapper
(
PropertyEditorValue
*
parent
)
:
m_valuesPropertyMap
(
this
)
PropertyEditorNodeWrapper
::
PropertyEditorNodeWrapper
(
PropertyEditorValue
*
parent
)
:
QObject
(
parent
),
m_valuesPropertyMap
(
this
)
{
m_editorValue
=
parent
;
connect
(
m_editorValue
,
SIGNAL
(
modelNodeChanged
()),
this
,
SLOT
(
update
()));
...
...
Write
Preview
Markdown
is supported
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