summaryrefslogtreecommitdiff
path: root/src/idle-im-channel.h
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2012-07-18 14:20:03 +0100
committerWill Thompson <will.thompson@collabora.co.uk>2012-07-19 12:15:02 +0100
commit2d61fce82d6aeb711ad49adaa0a9ed6fdd6567e5 (patch)
tree8a43ff7dcfeddcecea38ab3118c43882fa59311b /src/idle-im-channel.h
parent1ce34440c58a9b82cb15711d95e35a8acb512ecd (diff)
downloadtelepathy-idle-2d61fce82d6aeb711ad49adaa0a9ed6fdd6567e5.tar.gz
Make IdleIMChannel use TpBaseChannel
https://bugs.freedesktop.org/show_bug.cgi?id=31725
Diffstat (limited to 'src/idle-im-channel.h')
-rw-r--r--src/idle-im-channel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/idle-im-channel.h b/src/idle-im-channel.h
index 2438b5c..c995c3c 100644
--- a/src/idle-im-channel.h
+++ b/src/idle-im-channel.h
@@ -24,6 +24,7 @@
#include <glib-object.h>
#include <telepathy-glib/message-mixin.h>
#include <telepathy-glib/dbus-properties-mixin.h>
+#include <telepathy-glib/base-channel.h>
G_BEGIN_DECLS
@@ -31,13 +32,12 @@ typedef struct _IdleIMChannel IdleIMChannel;
typedef struct _IdleIMChannelClass IdleIMChannelClass;
struct _IdleIMChannelClass {
- GObjectClass parent_class;
- TpDBusPropertiesMixinClass dbus_props_class;
+ TpBaseChannelClass parent_class;
};
struct _IdleIMChannel {
- GObject parent;
- TpMessageMixin message_mixin;
+ TpBaseChannel parent;
+ TpMessageMixin message_mixin;
};
GType idle_im_channel_get_type(void);