[clients/aurorae] Change some connects to new syntax
This commit is contained in:
parent
4a88e1b005
commit
500ff7f68c
1 changed files with 3 additions and 3 deletions
|
@ -25,9 +25,9 @@ DecorationOptions::DecorationOptions(QObject *parent)
|
|||
, m_active(true)
|
||||
, m_decoration(nullptr)
|
||||
{
|
||||
connect(this, SIGNAL(decorationChanged()), SLOT(slotActiveChanged()));
|
||||
connect(this, SIGNAL(decorationChanged()), SIGNAL(colorsChanged()));
|
||||
connect(this, SIGNAL(decorationChanged()), SIGNAL(fontChanged()));
|
||||
connect(this, &DecorationOptions::decorationChanged, this, &DecorationOptions::slotActiveChanged);
|
||||
connect(this, &DecorationOptions::decorationChanged, this, &DecorationOptions::colorsChanged);
|
||||
connect(this, &DecorationOptions::decorationChanged, this, &DecorationOptions::fontChanged);
|
||||
}
|
||||
|
||||
DecorationOptions::~DecorationOptions()
|
||||
|
|
Loading…
Reference in a new issue