summaryrefslogtreecommitdiffstats
path: root/src/portal_service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/portal_service.cpp')
-rw-r--r--src/portal_service.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/portal_service.cpp b/src/portal_service.cpp
index 280078d..0344830 100644
--- a/src/portal_service.cpp
+++ b/src/portal_service.cpp
@@ -30,8 +30,9 @@
#include <kdebug.h>
// Portal
-#include "file_chooser_portal.h"
+#include "account_portal.h"
#include "email_portal.h"
+#include "file_chooser_portal.h"
#include "portal_service.h"
@@ -44,16 +45,18 @@ DesktopNodeService::DesktopNodeService(TQT_DBusConnection &connection)
{
m_interfaces.insert("org.freedesktop.DBus.Introspectable", this);
- REGISTER_PORTAL(TDEFileChooserPortal)
+ REGISTER_PORTAL(TDEAccountPortal)
REGISTER_PORTAL(TDEEmailPortal)
+ REGISTER_PORTAL(TDEFileChooserPortal)
registerObject(connection, dbusObjectPath);
}
DesktopNodeService::~DesktopNodeService()
{
- DESTROY_PORTAL(TDEFileChooserPortal)
+ DESTROY_PORTAL(TDEAccountPortal)
DESTROY_PORTAL(TDEEmailPortal)
+ DESTROY_PORTAL(TDEFileChooserPortal)
}
TQT_DBusObjectBase* DesktopNodeService::createInterface(const TQString& iface)