diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-10-28 21:27:55 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-23 20:14:30 +0800 |
commit | adca8bd9665b6455879f2478e51c4bfd53af4d52 (patch) | |
tree | 38bd1dda19664df0ceb239234230ab0e22208ea7 /libempathy-gtk/empathy-password-dialog.h | |
parent | f25f43bb57d892d433d5a61e40d100440fd0f222 (diff) | |
download | gsoc2013-empathy-adca8bd9665b6455879f2478e51c4bfd53af4d52.tar.gz gsoc2013-empathy-adca8bd9665b6455879f2478e51c4bfd53af4d52.tar.zst gsoc2013-empathy-adca8bd9665b6455879f2478e51c4bfd53af4d52.zip |
password-dialog: use self->priv pattern
https://bugzilla.gnome.org/show_bug.cgi?id=661640
Diffstat (limited to 'libempathy-gtk/empathy-password-dialog.h')
-rw-r--r-- | libempathy-gtk/empathy-password-dialog.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-password-dialog.h b/libempathy-gtk/empathy-password-dialog.h index 566322de1..97538e8a5 100644 --- a/libempathy-gtk/empathy-password-dialog.h +++ b/libempathy-gtk/empathy-password-dialog.h @@ -31,6 +31,7 @@ G_BEGIN_DECLS typedef struct _EmpathyPasswordDialog EmpathyPasswordDialog; typedef struct _EmpathyPasswordDialogClass EmpathyPasswordDialogClass; +typedef struct _EmpathyPasswordDialogPriv EmpathyPasswordDialogPriv; struct _EmpathyPasswordDialogClass { GtkMessageDialogClass parent_class; @@ -38,7 +39,7 @@ struct _EmpathyPasswordDialogClass { struct _EmpathyPasswordDialog { GtkMessageDialog parent; - gpointer priv; + EmpathyPasswordDialogPriv *priv; }; GType empathy_password_dialog_get_type (void); |