mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-18 01:27:46 +00:00
qt: Migrate to Qt 5 signal/slot connection syntax where applicable
This commit is contained in:
parent
4e1e16ac61
commit
e11285c9a8
5 changed files with 31 additions and 31 deletions
|
@ -39,7 +39,7 @@ CSpinBox::CSpinBox(QWidget* parent)
|
|||
// TODO: Might be nice to not immediately call the slot.
|
||||
// Think of an address that is being replaced by a different one, in which case a lot
|
||||
// invalid intermediate addresses would be read from during editing.
|
||||
connect(lineEdit(), SIGNAL(textEdited(QString)), this, SLOT(OnEditingFinished()));
|
||||
connect(lineEdit(), &QLineEdit::textEdited, this, &CSpinBox::OnEditingFinished);
|
||||
|
||||
UpdateText();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue