tools/designer/src/lib/shared/qdesigner_integration.cpp
changeset 3 41300fa6a67c
parent 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
2:56cd8111b7f7 3:41300fa6a67c
   115     // integrate the `Form Editor component'
   115     // integrate the `Form Editor component'
   116     //
   116     //
   117 
   117 
   118     // Extensions
   118     // Extensions
   119     if (QDesignerPropertyEditor *designerPropertyEditor= qobject_cast<QDesignerPropertyEditor *>(core()->propertyEditor())) {
   119     if (QDesignerPropertyEditor *designerPropertyEditor= qobject_cast<QDesignerPropertyEditor *>(core()->propertyEditor())) {
   120         connect(designerPropertyEditor, SIGNAL(propertyValueChanged(QString, QVariant, bool)), this, SLOT(updateProperty(QString, QVariant, bool)));
   120         connect(designerPropertyEditor, SIGNAL(propertyValueChanged(QString,QVariant,bool)), this, SLOT(updateProperty(QString,QVariant,bool)));
   121         connect(designerPropertyEditor, SIGNAL(resetProperty(QString)), this, SLOT(resetProperty(QString)));
   121         connect(designerPropertyEditor, SIGNAL(resetProperty(QString)), this, SLOT(resetProperty(QString)));
   122         connect(designerPropertyEditor, SIGNAL(addDynamicProperty(QString,QVariant)),
   122         connect(designerPropertyEditor, SIGNAL(addDynamicProperty(QString,QVariant)),
   123                 this, SLOT(addDynamicProperty(QString,QVariant)));
   123                 this, SLOT(addDynamicProperty(QString,QVariant)));
   124         connect(designerPropertyEditor, SIGNAL(removeDynamicProperty(QString)),
   124         connect(designerPropertyEditor, SIGNAL(removeDynamicProperty(QString)),
   125                 this, SLOT(removeDynamicProperty(QString)));
   125                 this, SLOT(removeDynamicProperty(QString)));