aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-log-source.h
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2009-03-06 19:51:55 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-03-06 19:51:55 +0800
commitd53b22689f12218cfa3b5f72fb936dd01dd08885 (patch)
tree80ab4bdc4ea0d4485ca639180e1c6fdec9f472da /libempathy/empathy-log-source.h
parent3e93782be91d774297b571ebcde221bf96f47cf5 (diff)
downloadgsoc2013-empathy-d53b22689f12218cfa3b5f72fb936dd01dd08885.tar
gsoc2013-empathy-d53b22689f12218cfa3b5f72fb936dd01dd08885.tar.gz
gsoc2013-empathy-d53b22689f12218cfa3b5f72fb936dd01dd08885.tar.bz2
gsoc2013-empathy-d53b22689f12218cfa3b5f72fb936dd01dd08885.tar.lz
gsoc2013-empathy-d53b22689f12218cfa3b5f72fb936dd01dd08885.tar.xz
gsoc2013-empathy-d53b22689f12218cfa3b5f72fb936dd01dd08885.tar.zst
gsoc2013-empathy-d53b22689f12218cfa3b5f72fb936dd01dd08885.zip
Added get_name function to EmpathyLogSource.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=2589
Diffstat (limited to 'libempathy/empathy-log-source.h')
-rw-r--r--libempathy/empathy-log-source.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy/empathy-log-source.h b/libempathy/empathy-log-source.h
index c9425ef45..c00571813 100644
--- a/libempathy/empathy-log-source.h
+++ b/libempathy/empathy-log-source.h
@@ -48,6 +48,7 @@ struct _EmpathyLogSourceInterface
{
GTypeInterface parent;
+ const gchar * (*get_name) (EmpathyLogSource *self);
gboolean (*exists) (EmpathyLogSource *self, McAccount *account,
const gchar *chat_id, gboolean chatroom);
void (*add_message) (EmpathyLogSource *self, const gchar *chat_id,
@@ -68,6 +69,7 @@ struct _EmpathyLogSourceInterface
GType empathy_log_source_get_type (void) G_GNUC_CONST;
+const gchar *empathy_log_source_get_name (EmpathyLogSource *self);
gboolean empathy_log_source_exists (EmpathyLogSource *self,
McAccount *account, const gchar *chat_id, gboolean chatroom);
void empathy_log_source_add_message (EmpathyLogSource *self,