summaryrefslogtreecommitdiffstats
path: root/tools/designer/src/components/propertyeditor
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-02-04 13:20:07 (GMT)
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-02-04 13:20:07 (GMT)
commitfe2611f98fd4167cd4746100f062380cbc72f6bd (patch)
tree4f4dc3b5763bb663092006c3ec214211b5a78678 /tools/designer/src/components/propertyeditor
parent7702b57286b0d02857f5312dbc36c87784ac1b11 (diff)
downloadQt-fe2611f98fd4167cd4746100f062380cbc72f6bd.zip
Qt-fe2611f98fd4167cd4746100f062380cbc72f6bd.tar.gz
Qt-fe2611f98fd4167cd4746100f062380cbc72f6bd.tar.bz2
Designer: Emit QDesignerPropertyEditorInterface::propertyChanged().
Broken by introduction of new signal with extended parameters. Emit both signals and block against each other. Tested against Eclipse integration. Reviewed-by: Jarek Kobus <jkobus@trolltech.com> Task-number: QTBUG-7764
Diffstat (limited to 'tools/designer/src/components/propertyeditor')
-rw-r--r--tools/designer/src/components/propertyeditor/propertyeditor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/designer/src/components/propertyeditor/propertyeditor.cpp b/tools/designer/src/components/propertyeditor/propertyeditor.cpp
index b171ddc..512cc82 100644
--- a/tools/designer/src/components/propertyeditor/propertyeditor.cpp
+++ b/tools/designer/src/components/propertyeditor/propertyeditor.cpp
@@ -1175,11 +1175,11 @@ void PropertyEditor::slotValueChanged(QtProperty *property, const QVariant &valu
Q_ASSERT(ok);
QVariant v;
qVariantSetValue(v, e);
- emit propertyValueChanged(property->propertyName(), v, true);
+ emitPropertyValueChanged(property->propertyName(), v, true);
return;
}
- emit propertyValueChanged(property->propertyName(), value, enableSubPropertyHandling);
+ emitPropertyValueChanged(property->propertyName(), value, enableSubPropertyHandling);
}
bool PropertyEditor::isDynamicProperty(const QtBrowserItem* item) const