mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-20 08:10:52 +01:00
Fix warning
This commit is contained in:
@@ -187,28 +187,17 @@ void DynamicTextFieldEditor::setUpConnections()
|
|||||||
disconnectConnections();
|
disconnectConnections();
|
||||||
|
|
||||||
//Setup the connection
|
//Setup the connection
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::colorChanged,
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::colorChanged, this, [=](){this -> updateForm();});
|
||||||
[this](){this -> updateForm();});
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::fontChanged, this, [=](){this -> updateForm();});
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::fontChanged,
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::taggChanged, this, [=](){this -> updateForm();});
|
||||||
[this](){this -> updateForm();});
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::textFromChanged, this, [=](){this -> updateForm();});
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::taggChanged,
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::textChanged, this, [=](){this -> updateForm();});
|
||||||
[this](){this -> updateForm();});
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::infoNameChanged, this, [=](){this -> updateForm();});
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::textFromChanged,
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::rotationChanged, this, [=](){this -> updateForm();});
|
||||||
[this](){this -> updateForm();});
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::frameChanged, this, [=](){this -> updateForm();});
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::textChanged,
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::textWidthChanged, this, [=](){this -> updateForm();});
|
||||||
[this](){this -> updateForm();});
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::compositeTextChanged,this, [=](){this -> updateForm();});
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::infoNameChanged,
|
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::keepVisualRotationChanged, this, [=](){this -> updateForm();});
|
||||||
[this](){this -> updateForm();});
|
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::rotationChanged,
|
|
||||||
[this](){this -> updateForm();});
|
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::frameChanged,
|
|
||||||
[this](){this -> updateForm();});
|
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::textWidthChanged,
|
|
||||||
[this](){this -> updateForm();});
|
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::compositeTextChanged,
|
|
||||||
[this](){this -> updateForm();});
|
|
||||||
m_connection_list << connect(m_text_field.data(), &PartDynamicTextField::keepVisualRotationChanged,
|
|
||||||
[this](){this -> updateForm();});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void DynamicTextFieldEditor::disconnectConnections()
|
void DynamicTextFieldEditor::disconnectConnections()
|
||||||
|
|||||||
Reference in New Issue
Block a user