[clients/aurorae] Change some connects to new syntax

remotes/origin/Plasma/5.0
Martin Gräßlin 12 years ago
parent 4a88e1b005
commit 500ff7f68c
  1. 6
      clients/aurorae/src/decorationoptions.cpp

@ -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…
Cancel
Save