diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2014-02-06 20:12:45 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2014-02-12 15:55:13 +0800 |
commit | 710247a3cbb18bd06a2f8408e0705eb74ebd036c (patch) | |
tree | b10c624533645a4a41d12f11768d6bc5afaeffb6 /src/empathy-chat-manager.h | |
parent | b941bce456bf366afcaf3304d13b9d797770b5b5 (diff) | |
download | gsoc2013-empathy-710247a3cbb18bd06a2f8408e0705eb74ebd036c.tar gsoc2013-empathy-710247a3cbb18bd06a2f8408e0705eb74ebd036c.tar.gz gsoc2013-empathy-710247a3cbb18bd06a2f8408e0705eb74ebd036c.tar.bz2 gsoc2013-empathy-710247a3cbb18bd06a2f8408e0705eb74ebd036c.tar.lz gsoc2013-empathy-710247a3cbb18bd06a2f8408e0705eb74ebd036c.tar.xz gsoc2013-empathy-710247a3cbb18bd06a2f8408e0705eb74ebd036c.tar.zst gsoc2013-empathy-710247a3cbb18bd06a2f8408e0705eb74ebd036c.zip |
chat-mgr: use GDBus service API
We have now to use the GtkApplication bus name when calling the method as GBus
uses this bus name and not the Telepathy one which is used by dbus-glib.
https://bugzilla.gnome.org/show_bug.cgi?id=723766
Diffstat (limited to 'src/empathy-chat-manager.h')
-rw-r--r-- | src/empathy-chat-manager.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/empathy-chat-manager.h b/src/empathy-chat-manager.h index b5516c33d..06f6947b7 100644 --- a/src/empathy-chat-manager.h +++ b/src/empathy-chat-manager.h @@ -22,6 +22,7 @@ #include "empathy-chat.h" +#include "chat-manager-interface.h" G_BEGIN_DECLS @@ -30,12 +31,12 @@ typedef struct _EmpathyChatManagerClass EmpathyChatManagerClass; struct _EmpathyChatManagerClass { - GObjectClass parent_class; + EmpathyGenChatManagerSkeletonClass parent_class; }; struct _EmpathyChatManager { - GObject parent; + EmpathyGenChatManagerSkeleton parent; }; GType empathy_chat_manager_get_type (void); |