aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-invite-participant-dialog.h
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2009-12-19 10:16:02 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2009-12-21 17:55:03 +0800
commit845c851672bb392dd265cd63afde325ed1dfad49 (patch)
tree32c3ace0637acb338bb7c92a77fe059bdc05a53e /src/empathy-invite-participant-dialog.h
parentacff8e6eece48cbe0915ca60166923afc5aa774b (diff)
downloadgsoc2013-empathy-845c851672bb392dd265cd63afde325ed1dfad49.tar
gsoc2013-empathy-845c851672bb392dd265cd63afde325ed1dfad49.tar.gz
gsoc2013-empathy-845c851672bb392dd265cd63afde325ed1dfad49.tar.bz2
gsoc2013-empathy-845c851672bb392dd265cd63afde325ed1dfad49.tar.lz
gsoc2013-empathy-845c851672bb392dd265cd63afde325ed1dfad49.tar.xz
gsoc2013-empathy-845c851672bb392dd265cd63afde325ed1dfad49.tar.zst
gsoc2013-empathy-845c851672bb392dd265cd63afde325ed1dfad49.zip
Port EmpathyInviteParticipantDialog over to EmpathyContactSelectorDialog
Diffstat (limited to 'src/empathy-invite-participant-dialog.h')
-rw-r--r--src/empathy-invite-participant-dialog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/empathy-invite-participant-dialog.h b/src/empathy-invite-participant-dialog.h
index 642733871..561e10738 100644
--- a/src/empathy-invite-participant-dialog.h
+++ b/src/empathy-invite-participant-dialog.h
@@ -14,6 +14,8 @@
#include <gtk/gtk.h>
+#include <libempathy-gtk/empathy-contact-selector-dialog.h>
+
G_BEGIN_DECLS
#define EMPATHY_TYPE_INVITE_PARTICIPANT_DIALOG (empathy_invite_participant_dialog_get_type ())
@@ -28,18 +30,16 @@ typedef struct _EmpathyInviteParticipantDialogClass EmpathyInviteParticipantDial
struct _EmpathyInviteParticipantDialog
{
- GtkDialog parent;
+ EmpathyContactSelectorDialog parent;
};
struct _EmpathyInviteParticipantDialogClass
{
- GtkDialogClass parent_class;
+ EmpathyContactSelectorDialogClass parent_class;
};
GType empathy_invite_participant_dialog_get_type (void);
GtkWidget *empathy_invite_participant_dialog_new (GtkWindow *parent);
-EmpathyContact *empathy_invite_participant_dialog_dup_selected_contact (EmpathyInviteParticipantDialog *self);
-
G_END_DECLS