aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/connectioneditor/bindingmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmldesigner/components/connectioneditor/bindingmodel.cpp')
-rw-r--r--src/plugins/qmldesigner/components/connectioneditor/bindingmodel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/qmldesigner/components/connectioneditor/bindingmodel.cpp b/src/plugins/qmldesigner/components/connectioneditor/bindingmodel.cpp
index 8ba1347bbf..e3c47d996c 100644
--- a/src/plugins/qmldesigner/components/connectioneditor/bindingmodel.cpp
+++ b/src/plugins/qmldesigner/components/connectioneditor/bindingmodel.cpp
@@ -255,15 +255,15 @@ BindingModelBackendDelegate::BindingModelBackendDelegate(BindingModel *parent)
, m_sourceNode()
, m_sourceNodeProperty()
{
- connect(&m_sourceNode, &StudioQmlComboBoxBackend::activated, this, [this]() {
+ connect(&m_sourceNode, &StudioQmlComboBoxBackend::activated, this, [this] {
sourceNodeChanged();
});
- connect(&m_sourceNodeProperty, &StudioQmlComboBoxBackend::activated, this, [this]() {
+ connect(&m_sourceNodeProperty, &StudioQmlComboBoxBackend::activated, this, [this] {
sourcePropertyNameChanged();
});
- connect(&m_property, &StudioQmlComboBoxBackend::activated, this, [this]() {
+ connect(&m_property, &StudioQmlComboBoxBackend::activated, this, [this] {
targetPropertyNameChanged();
});
}
@@ -373,7 +373,7 @@ void BindingModelBackendDelegate::sourcePropertyNameChanged() const
void BindingModelBackendDelegate::targetPropertyNameChanged() const
{
- auto commit = [this]() {
+ auto commit = [this] {
BindingModel *model = qobject_cast<BindingModel *>(parent());
QTC_ASSERT(model, return);
const PropertyName propertyName = m_property.currentText().toUtf8();