From 18332d3ddbe1e071c83dcb8186839372216920f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Fri, 10 May 2013 22:08:47 +0200 Subject: [PATCH] revert to NON obosolete signtature the signature is obsolete in KF5 but mandatory in KDE4 not using it so far breaks the protocol thus kstart temp. rules fail REVIEW: 110386 --- rules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.cpp b/rules.cpp index df5f50908e..b7e163b664 100644 --- a/rules.cpp +++ b/rules.cpp @@ -920,7 +920,7 @@ RuleBook::RuleBook(QObject *parent) : QObject(parent) , m_updateTimer(new QTimer(this)) , m_updatesDisabled(false) - , m_temporaryRulesMessages(new KXMessages("_KDE_NET_WM_TEMPORARY_RULES", NULL)) + , m_temporaryRulesMessages(new KXMessages("_KDE_NET_WM_TEMPORARY_RULES", NULL, false)) // TODO KF5 - remove *then* obsolete last parameter which is *now* mandatory { connect(m_temporaryRulesMessages.data(), SIGNAL(gotMessage(QString)), SLOT(temporaryRulesMessage(QString))); connect(m_updateTimer, SIGNAL(timeout()), SLOT(save()));