From 02fced34188fe797dd318fbbd7925f56e5ee2dd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Thu, 30 Oct 2014 08:40:09 +0100 Subject: [PATCH] [kdecoration2] Pass QVariantList argument to parent Decoration --- windec/kdecoration2/breezedeco.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/windec/kdecoration2/breezedeco.cpp b/windec/kdecoration2/breezedeco.cpp index 67604960..7f879d40 100644 --- a/windec/kdecoration2/breezedeco.cpp +++ b/windec/kdecoration2/breezedeco.cpp @@ -60,12 +60,11 @@ void ColorSettings::init(const QPalette &pal) } Decoration::Decoration(QObject *parent, const QVariantList &args) - : KDecoration2::Decoration(parent) + : KDecoration2::Decoration(parent, args) , m_colorSettings(client()->palette()) , m_leftButtons(nullptr) , m_rightButtons(nullptr) { - Q_UNUSED(args) } Decoration::~Decoration() = default;