]> git.sur5r.net Git - minitube/commitdiff
Removed dbus ifdefs
author <> <>
Wed, 4 Aug 2010 19:28:18 +0000 (21:28 +0200)
committerFlavio <flavio@guodil.local>
Wed, 4 Aug 2010 19:28:18 +0000 (21:28 +0200)
src/gnomeglobalshortcutbackend.cpp

index f34c20d92099ba43f3ce0a806f6a26b67a0f5c27..6fc3594bc720f765828b1a75c78f3384c1fc6b5d 100644 (file)
@@ -3,10 +3,7 @@
 
 #include <QAction>
 #include <QtDebug>
-
-#ifdef QT_DBUS_LIB
-#  include <QtDBus>
-#endif
+#include <QtDBus>
 
 const char* GnomeGlobalShortcutBackend::kGsdService = "org.gnome.SettingsDaemon";
 const char* GnomeGlobalShortcutBackend::kGsdPath = "/org/gnome/SettingsDaemon/MediaKeys";
@@ -17,17 +14,12 @@ GnomeGlobalShortcutBackend::GnomeGlobalShortcutBackend(GlobalShortcuts* parent)
     interface_(NULL) { }
 
 bool GnomeGlobalShortcutBackend::IsGsdAvailable() {
-#ifdef QT_DBUS_LIB
     return QDBusConnection::sessionBus().interface()->isServiceRegistered(
             GnomeGlobalShortcutBackend::kGsdService);
-#else // QT_DBUS_LIB
-    return false;
-#endif
 }
 
 bool GnomeGlobalShortcutBackend::DoRegister() {
     // qDebug() << __PRETTY_FUNCTION__;
-#ifdef QT_DBUS_LIB
     // Check if the GSD service is available
     if (!QDBusConnection::sessionBus().interface()->isServiceRegistered(kGsdService))
         return false;
@@ -41,14 +33,9 @@ bool GnomeGlobalShortcutBackend::DoRegister() {
             this, SLOT(GnomeMediaKeyPressed(QString,QString)));
 
     return true;
-#else // QT_DBUS_LIB
-    return false;
-#endif
 }
 
 void GnomeGlobalShortcutBackend::DoUnregister() {
-
-#ifdef QT_DBUS_LIB
     // Check if the GSD service is available
     if (!QDBusConnection::sessionBus().interface()->isServiceRegistered(kGsdService))
         return;
@@ -57,7 +44,6 @@ void GnomeGlobalShortcutBackend::DoUnregister() {
 
     disconnect(interface_, SIGNAL(MediaPlayerKeyPressed(QString,QString)),
                this, SLOT(GnomeMediaKeyPressed(QString,QString)));
-#endif
 }
 
 void GnomeGlobalShortcutBackend::GnomeMediaKeyPressed(const QString&, const QString& key) {