From bef0bf8a4feaaa5e497079275d46d8cfa5eea8c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Thu, 15 May 2014 08:42:09 +0200 Subject: [PATCH] Do not register dbus service org.kde.kwin.Compositing Just use org.kde.KWin - there's object and interface to differentiate. --- composite.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/composite.cpp b/composite.cpp index 6351e520f7..81079c47a2 100644 --- a/composite.cpp +++ b/composite.cpp @@ -95,7 +95,6 @@ Compositor::Compositor(QObject* workspace) new CompositingAdaptor(this); QDBusConnection dbus = QDBusConnection::sessionBus(); dbus.registerObject(QStringLiteral("/Compositor"), this); - dbus.registerService(QStringLiteral("org.kde.kwin.Compositing")); dbus.connect(QString(), QStringLiteral("/Compositor"), QStringLiteral("org.kde.kwin.Compositing"), QStringLiteral("reinit"), this, SLOT(slotReinitialize())); connect(&unredirectTimer, SIGNAL(timeout()), SLOT(delayedCheckUnredirect()));