diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-12-16 01:58:21 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-12-17 18:38:49 +0800 |
commit | bd731dbfa05556c02013ed8453b10ac57b218306 (patch) | |
tree | 8f15becd4bbaba24f2de74cf45aaf9b7d0d990b6 /libempathy-gtk/empathy-new-message-dialog.h | |
parent | 30e07ec329817c5ef360645aa2dd80cd1cff9eeb (diff) | |
download | gsoc2013-empathy-bd731dbfa05556c02013ed8453b10ac57b218306.tar gsoc2013-empathy-bd731dbfa05556c02013ed8453b10ac57b218306.tar.gz gsoc2013-empathy-bd731dbfa05556c02013ed8453b10ac57b218306.tar.bz2 gsoc2013-empathy-bd731dbfa05556c02013ed8453b10ac57b218306.tar.lz gsoc2013-empathy-bd731dbfa05556c02013ed8453b10ac57b218306.tar.xz gsoc2013-empathy-bd731dbfa05556c02013ed8453b10ac57b218306.tar.zst gsoc2013-empathy-bd731dbfa05556c02013ed8453b10ac57b218306.zip |
new-message-dialog: inherit from EmpathyContactSelectorDialog
Diffstat (limited to 'libempathy-gtk/empathy-new-message-dialog.h')
-rw-r--r-- | libempathy-gtk/empathy-new-message-dialog.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-new-message-dialog.h b/libempathy-gtk/empathy-new-message-dialog.h index 6e01619db..95dbae8a0 100644 --- a/libempathy-gtk/empathy-new-message-dialog.h +++ b/libempathy-gtk/empathy-new-message-dialog.h @@ -25,17 +25,19 @@ #include <glib-object.h> #include <gtk/gtk.h> +#include <libempathy-gtk/empathy-contact-selector-dialog.h> + G_BEGIN_DECLS typedef struct _EmpathyNewMessageDialog EmpathyNewMessageDialog; typedef struct _EmpathyNewMessageDialogClass EmpathyNewMessageDialogClass; struct _EmpathyNewMessageDialogClass { - GtkDialogClass parent_class; + EmpathyContactSelectorDialogClass parent_class; }; struct _EmpathyNewMessageDialog { - GtkDialog parent; + EmpathyContactSelectorDialog parent; }; GType empathy_new_message_dialog_get_type (void); |