aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/connectioneditor/connectionmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmldesigner/components/connectioneditor/connectionmodel.cpp')
-rw-r--r--src/plugins/qmldesigner/components/connectioneditor/connectionmodel.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/qmldesigner/components/connectioneditor/connectionmodel.cpp b/src/plugins/qmldesigner/components/connectioneditor/connectionmodel.cpp
index dd6350f4e5..0193b5d5ea 100644
--- a/src/plugins/qmldesigner/components/connectioneditor/connectionmodel.cpp
+++ b/src/plugins/qmldesigner/components/connectioneditor/connectionmodel.cpp
@@ -675,21 +675,21 @@ ConnectionModelBackendDelegate::ConnectionModelBackendDelegate(ConnectionModel *
m_propertyTreeModel(parent->connectionView()), m_propertyListProxyModel(&m_propertyTreeModel)
{
- connect(&m_signalDelegate, &PropertyTreeModelDelegate::commitData, this, [this]() {
+ connect(&m_signalDelegate, &PropertyTreeModelDelegate::commitData, this, [this] {
handleTargetChanged();
});
connect(&m_okStatementDelegate,
&ConnectionModelStatementDelegate::statementChanged,
this,
- [this]() { handleOkStatementChanged(); });
+ [this] { handleOkStatementChanged(); });
connect(&m_koStatementDelegate,
&ConnectionModelStatementDelegate::statementChanged,
this,
- [this]() { handleKOStatementChanged(); });
+ [this] { handleKOStatementChanged(); });
- connect(&m_conditionListModel, &ConditionListModel::conditionChanged, this, [this]() {
+ connect(&m_conditionListModel, &ConditionListModel::conditionChanged, this, [this] {
handleConditionChanged();
});
@@ -1209,27 +1209,27 @@ ConnectionModelStatementDelegate::ConnectionModelStatementDelegate(ConnectionMod
{
m_functionDelegate.setPropertyType(PropertyTreeModel::SlotType);
- connect(&m_functionDelegate, &PropertyTreeModelDelegate::commitData, this, [this]() {
+ connect(&m_functionDelegate, &PropertyTreeModelDelegate::commitData, this, [this] {
handleFunctionChanged();
});
- connect(&m_rhsAssignmentDelegate, &PropertyTreeModelDelegate::commitData, this, [this]() {
+ connect(&m_rhsAssignmentDelegate, &PropertyTreeModelDelegate::commitData, this, [this] {
handleRhsAssignmentChanged();
});
- connect(&m_lhsDelegate, &PropertyTreeModelDelegate::commitData, this, [this]() {
+ connect(&m_lhsDelegate, &PropertyTreeModelDelegate::commitData, this, [this] {
handleLhsChanged();
});
- connect(&m_stringArgument, &StudioQmlTextBackend::activated, this, [this]() {
+ connect(&m_stringArgument, &StudioQmlTextBackend::activated, this, [this] {
handleStringArgumentChanged();
});
- connect(&m_states, &StudioQmlComboBoxBackend::activated, this, [this]() {
+ connect(&m_states, &StudioQmlComboBoxBackend::activated, this, [this] {
handleStateChanged();
});
- connect(&m_stateTargets, &StudioQmlComboBoxBackend::activated, this, [this]() {
+ connect(&m_stateTargets, &StudioQmlComboBoxBackend::activated, this, [this] {
handleStateTargetsChanged();
});
}