diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-10-04 22:11:34 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-10-04 22:11:34 +0200 |
commit | 852005be65d21a6806909a0674a54590e5417de6 (patch) | |
tree | 4c49f17e94e59cbeb1f68f89ab8bb066d41ef7fc /src | |
parent | be0d390b0205acb6a2485fa98f6d54172d2e75e3 (diff) | |
download | RWA.Support.DesktopApp-852005be65d21a6806909a0674a54590e5417de6.tar.gz RWA.Support.DesktopApp-852005be65d21a6806909a0674a54590e5417de6.tar.bz2 RWA.Support.DesktopApp-852005be65d21a6806909a0674a54590e5417de6.zip |
src/{session.cpp,RWADBusAdaptor.h}: Adapt DBus service name and path to recent changes in raw.support.sessionservice.
Diffstat (limited to 'src')
-rw-r--r-- | src/RWADBusAdaptor.h | 2 | ||||
-rw-r--r-- | src/session.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/RWADBusAdaptor.h b/src/RWADBusAdaptor.h index 5e90fe9..4fbad44 100644 --- a/src/RWADBusAdaptor.h +++ b/src/RWADBusAdaptor.h @@ -28,7 +28,7 @@ class OrgArcticaProjectRWAInterface: public QDBusAbstractInterface Q_OBJECT public: static inline const char *staticInterfaceName() - { return "org.ArcticaProject.RWA"; } + { return "org.ArcticaProject.RWASupportSessionService"; } public: OrgArcticaProjectRWAInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); diff --git a/src/session.cpp b/src/session.cpp index e0e17cf..8d94be4 100644 --- a/src/session.cpp +++ b/src/session.cpp @@ -218,7 +218,7 @@ void Session::_initDBus() { } // Create DBus object - _dbus_rwa = new OrgArcticaProjectRWAInterface("org.ArcticaProject.RWA", "/RWA", + _dbus_rwa = new OrgArcticaProjectRWAInterface("org.ArcticaProject.RWASupportSessionService", "/RWASupportSessionService", QDBusConnection::sessionBus(), this->parent()); qDebug("Initialized DBus object!"); |