diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-05-18 22:27:44 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-05-18 22:27:44 +0800 |
commit | ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f (patch) | |
tree | 00f26f846d8df7206f581d4957116d80c4f8202e /src/empathy-call-window.h | |
parent | 7f7da422bd805bb0a44135c107f013882f5824dc (diff) | |
download | gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar.gz gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar.bz2 gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar.lz gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar.xz gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.tar.zst gsoc2013-empathy-ec55d4f9308a0eb65c6ea5de7e9757e9d8b0b70f.zip |
Improve dispatcher. Fixes bug #465928.
svn path=/trunk/; revision=1108
Diffstat (limited to 'src/empathy-call-window.h')
-rw-r--r-- | src/empathy-call-window.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/empathy-call-window.h b/src/empathy-call-window.h index eef1c9a99..782eda09c 100644 --- a/src/empathy-call-window.h +++ b/src/empathy-call-window.h @@ -26,11 +26,14 @@ #include <gtk/gtk.h> -#include <libempathy/empathy-tp-call.h> +#include <telepathy-glib/channel.h> G_BEGIN_DECLS -GtkWidget *empathy_call_window_new (EmpathyTpCall *call); +GtkWidget *empathy_call_window_new (TpChannel *channel); +GtkWidget *empathy_call_window_find (TpChannel *channel); +void empathy_call_window_set_channel (GtkWidget *window, + TpChannel *channel); G_END_DECLS |