From 500ff7f68c889158ed979e553a83ba143d3a9491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Mon, 16 Jun 2014 11:36:10 +0200 Subject: [PATCH] [clients/aurorae] Change some connects to new syntax --- clients/aurorae/src/decorationoptions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/aurorae/src/decorationoptions.cpp b/clients/aurorae/src/decorationoptions.cpp index 709381d696..fb3da425e0 100644 --- a/clients/aurorae/src/decorationoptions.cpp +++ b/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()