aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-invite-participant-dialog.c
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2009-12-22 08:29:08 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2009-12-22 08:29:08 +0800
commit72034a8daf617d2a02d80f8a19d05d8be792ce6d (patch)
treeb9e7c7efa24227b7cae46b9835bfeb2ff070515a /src/empathy-invite-participant-dialog.c
parent2840411971e6e2a25a75b05a4ab0a0d8922b7fcb (diff)
downloadgsoc2013-empathy-72034a8daf617d2a02d80f8a19d05d8be792ce6d.tar
gsoc2013-empathy-72034a8daf617d2a02d80f8a19d05d8be792ce6d.tar.gz
gsoc2013-empathy-72034a8daf617d2a02d80f8a19d05d8be792ce6d.tar.bz2
gsoc2013-empathy-72034a8daf617d2a02d80f8a19d05d8be792ce6d.tar.lz
gsoc2013-empathy-72034a8daf617d2a02d80f8a19d05d8be792ce6d.tar.xz
gsoc2013-empathy-72034a8daf617d2a02d80f8a19d05d8be792ce6d.tar.zst
gsoc2013-empathy-72034a8daf617d2a02d80f8a19d05d8be792ce6d.zip
Remove unneeded private struct
Diffstat (limited to 'src/empathy-invite-participant-dialog.c')
-rw-r--r--src/empathy-invite-participant-dialog.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/empathy-invite-participant-dialog.c b/src/empathy-invite-participant-dialog.c
index f67a7fede..70332d1ff 100644
--- a/src/empathy-invite-participant-dialog.c
+++ b/src/empathy-invite-participant-dialog.c
@@ -13,30 +13,18 @@
#include "empathy-invite-participant-dialog.h"
-#define GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), EMPATHY_TYPE_INVITE_PARTICIPANT_DIALOG, EmpathyInviteParticipantDialogPrivate))
-
G_DEFINE_TYPE (EmpathyInviteParticipantDialog,
empathy_invite_participant_dialog, EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG);
-typedef struct _EmpathyInviteParticipantDialogPrivate EmpathyInviteParticipantDialogPrivate;
-struct _EmpathyInviteParticipantDialogPrivate
-{
- int dum;
-};
-
static void
empathy_invite_participant_dialog_class_init (EmpathyInviteParticipantDialogClass *klass)
{
- GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
-
- g_type_class_add_private (gobject_class, sizeof (EmpathyInviteParticipantDialogPrivate));
}
static void
empathy_invite_participant_dialog_init (EmpathyInviteParticipantDialog *self)
{
EmpathyContactSelectorDialog *parent = EMPATHY_CONTACT_SELECTOR_DIALOG (self);
- // EmpathyInviteParticipantDialogPrivate *priv = GET_PRIVATE (self);
GtkWidget *label;
char *str;