diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-08-24 20:31:39 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-10-18 16:56:40 +0800 |
commit | 625867bfc70a1d852940a6d1ed36971f6e375cff (patch) | |
tree | ec369f43880dad7b87e274396a7dde2ef2ea1b2f /libempathy-gtk/empathy-new-call-dialog.h | |
parent | 588247c8bba25fd9ed087e1f8f06997c5c7534f2 (diff) | |
download | gsoc2013-empathy-625867bfc70a1d852940a6d1ed36971f6e375cff.tar gsoc2013-empathy-625867bfc70a1d852940a6d1ed36971f6e375cff.tar.gz gsoc2013-empathy-625867bfc70a1d852940a6d1ed36971f6e375cff.tar.bz2 gsoc2013-empathy-625867bfc70a1d852940a6d1ed36971f6e375cff.tar.lz gsoc2013-empathy-625867bfc70a1d852940a6d1ed36971f6e375cff.tar.xz gsoc2013-empathy-625867bfc70a1d852940a6d1ed36971f6e375cff.tar.zst gsoc2013-empathy-625867bfc70a1d852940a6d1ed36971f6e375cff.zip |
new-call-dialog: port to EmpathyContactChooser
Replace the 'send video' checkbox by an extra button
It's more coherent with the other places where we allow user to start calls.
It also gives better feedback as we can unsensitive this button if the
selected contact doesn't support video.
https://bugzilla.gnome.org/show_bug.cgi?id=661981
Diffstat (limited to 'libempathy-gtk/empathy-new-call-dialog.h')
-rw-r--r-- | libempathy-gtk/empathy-new-call-dialog.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-new-call-dialog.h b/libempathy-gtk/empathy-new-call-dialog.h index 029c3736f..6bfa789b5 100644 --- a/libempathy-gtk/empathy-new-call-dialog.h +++ b/libempathy-gtk/empathy-new-call-dialog.h @@ -24,19 +24,17 @@ #include <glib-object.h> #include <gtk/gtk.h> -#include <libempathy-gtk/empathy-contact-selector-dialog.h> - G_BEGIN_DECLS typedef struct _EmpathyNewCallDialog EmpathyNewCallDialog; typedef struct _EmpathyNewCallDialogClass EmpathyNewCallDialogClass; struct _EmpathyNewCallDialogClass { - EmpathyContactSelectorDialogClass parent_class; + GtkDialogClass parent_class; }; struct _EmpathyNewCallDialog { - EmpathyContactSelectorDialog parent; + GtkDialog parent; }; GType empathy_new_call_dialog_get_type (void); |