diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-10 18:45:48 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-16 18:31:30 +0800 |
commit | caae76cdabb9939989d196cef7f367dcb26c8d44 (patch) | |
tree | bea0e207ef050236790487418a0cb7d36ec4126e /libempathy-gtk/empathy-contactinfo-utils.h | |
parent | 7c3389cdc7276917d23c83b646573b6d9f22cfa7 (diff) | |
download | gsoc2013-empathy-caae76cdabb9939989d196cef7f367dcb26c8d44.tar gsoc2013-empathy-caae76cdabb9939989d196cef7f367dcb26c8d44.tar.gz gsoc2013-empathy-caae76cdabb9939989d196cef7f367dcb26c8d44.tar.bz2 gsoc2013-empathy-caae76cdabb9939989d196cef7f367dcb26c8d44.tar.lz gsoc2013-empathy-caae76cdabb9939989d196cef7f367dcb26c8d44.tar.xz gsoc2013-empathy-caae76cdabb9939989d196cef7f367dcb26c8d44.tar.zst gsoc2013-empathy-caae76cdabb9939989d196cef7f367dcb26c8d44.zip |
factor out empathy_contact_info_create_channel_list_label()
Move it to empathy-contactinfo-utils so we'll be able to re-use it in
empathy-individual-widget as well.
https://bugzilla.gnome.org/show_bug.cgi?id=663763
Diffstat (limited to 'libempathy-gtk/empathy-contactinfo-utils.h')
-rw-r--r-- | libempathy-gtk/empathy-contactinfo-utils.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-contactinfo-utils.h b/libempathy-gtk/empathy-contactinfo-utils.h index 1d89ff229..a49e807aa 100644 --- a/libempathy-gtk/empathy-contactinfo-utils.h +++ b/libempathy-gtk/empathy-contactinfo-utils.h @@ -22,6 +22,8 @@ #define __EMPATHY_CONTACTINFO_UTILS_H__ #include <glib.h> +#include <gtk/gtk.h> + #include <telepathy-glib/connection.h> G_BEGIN_DECLS @@ -39,6 +41,10 @@ gint empathy_contact_info_field_cmp (TpContactInfoField *field1, gint empathy_contact_info_field_spec_cmp (TpContactInfoFieldSpec *spec1, TpContactInfoFieldSpec *spec2); +GtkWidget * empathy_contact_info_create_channel_list_label (TpAccount *account, + GList *info, + guint row); + G_END_DECLS #endif /* __EMPATHY_UTILS_H__ */ |