summaryrefslogtreecommitdiff
path: root/src/idle-im-channel.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-08-16 13:40:53 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-08-17 10:32:08 +0200
commit5d540a05ac2ccd48e3892bf6fb7ab74420256597 (patch)
tree65a600c6d60d9db2530039b33e7d687f86699c22 /src/idle-im-channel.h
parentcab03c25bdfc574aea3bbc510022cc5360d7e339 (diff)
downloadtelepathy-idle-5d540a05ac2ccd48e3892bf6fb7ab74420256597.tar.gz
Implement Messages interface (fdo #29378)
Diffstat (limited to 'src/idle-im-channel.h')
-rw-r--r--src/idle-im-channel.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/idle-im-channel.h b/src/idle-im-channel.h
index 05c810b..2438b5c 100644
--- a/src/idle-im-channel.h
+++ b/src/idle-im-channel.h
@@ -22,7 +22,7 @@
#define __IDLE_IM_CHANNEL_H__
#include <glib-object.h>
-#include <telepathy-glib/text-mixin.h>
+#include <telepathy-glib/message-mixin.h>
#include <telepathy-glib/dbus-properties-mixin.h>
G_BEGIN_DECLS
@@ -32,13 +32,12 @@ typedef struct _IdleIMChannelClass IdleIMChannelClass;
struct _IdleIMChannelClass {
GObjectClass parent_class;
- TpTextMixinClass text_class;
TpDBusPropertiesMixinClass dbus_props_class;
};
struct _IdleIMChannel {
GObject parent;
- TpTextMixin text;
+ TpMessageMixin message_mixin;
};
GType idle_im_channel_get_type(void);