diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-17 20:16:31 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-11 18:58:34 +0800 |
commit | b24ca484fb47cc6acc7585fb56377e7b3e6a71cf (patch) | |
tree | f4052e2bb8c0d0b26a0d378829759b7d555eab64 /src/empathy-accounts-dialog.h | |
parent | 309dc2bba3edec26b99cb9cce97802d280090916 (diff) | |
download | gsoc2013-empathy-b24ca484fb47cc6acc7585fb56377e7b3e6a71cf.tar gsoc2013-empathy-b24ca484fb47cc6acc7585fb56377e7b3e6a71cf.tar.gz gsoc2013-empathy-b24ca484fb47cc6acc7585fb56377e7b3e6a71cf.tar.bz2 gsoc2013-empathy-b24ca484fb47cc6acc7585fb56377e7b3e6a71cf.tar.lz gsoc2013-empathy-b24ca484fb47cc6acc7585fb56377e7b3e6a71cf.tar.xz gsoc2013-empathy-b24ca484fb47cc6acc7585fb56377e7b3e6a71cf.tar.zst gsoc2013-empathy-b24ca484fb47cc6acc7585fb56377e7b3e6a71cf.zip |
accounts-dialog: inherit from GtkDialog (#600023)
Diffstat (limited to 'src/empathy-accounts-dialog.h')
-rw-r--r-- | src/empathy-accounts-dialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-accounts-dialog.h b/src/empathy-accounts-dialog.h index 2d9d60c2b..6decad71d 100644 --- a/src/empathy-accounts-dialog.h +++ b/src/empathy-accounts-dialog.h @@ -43,14 +43,14 @@ G_BEGIN_DECLS (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_ACCOUNTS_DIALOG, EmpathyAccountsDialogClass)) typedef struct { - GObject parent; + GtkDialog parent; /* private */ gpointer priv; } EmpathyAccountsDialog; typedef struct { - GObjectClass parent_class; + GtkDialogClass parent_class; } EmpathyAccountsDialogClass; GType empathy_accounts_dialog_get_type (void); |