aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-new-call-dialog.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-10-18 17:53:01 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-10-18 17:54:21 +0800
commitd895fd88a474e9b9643d908c43afcf7f8dd96a93 (patch)
treea8e3c8ce58fe88353a5d3525016acc356066b7f6 /libempathy-gtk/empathy-new-call-dialog.h
parent7e68d5813cd87f22546081e77796acbb00e8e835 (diff)
downloadgsoc2013-empathy-d895fd88a474e9b9643d908c43afcf7f8dd96a93.tar
gsoc2013-empathy-d895fd88a474e9b9643d908c43afcf7f8dd96a93.tar.gz
gsoc2013-empathy-d895fd88a474e9b9643d908c43afcf7f8dd96a93.tar.bz2
gsoc2013-empathy-d895fd88a474e9b9643d908c43afcf7f8dd96a93.tar.lz
gsoc2013-empathy-d895fd88a474e9b9643d908c43afcf7f8dd96a93.tar.xz
gsoc2013-empathy-d895fd88a474e9b9643d908c43afcf7f8dd96a93.tar.zst
gsoc2013-empathy-d895fd88a474e9b9643d908c43afcf7f8dd96a93.zip
new-call-dialog: use the self->priv pattern
https://bugzilla.gnome.org/show_bug.cgi?id=661981
Diffstat (limited to 'libempathy-gtk/empathy-new-call-dialog.h')
-rw-r--r--libempathy-gtk/empathy-new-call-dialog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-new-call-dialog.h b/libempathy-gtk/empathy-new-call-dialog.h
index 6bfa789b5..d3f05e64e 100644
--- a/libempathy-gtk/empathy-new-call-dialog.h
+++ b/libempathy-gtk/empathy-new-call-dialog.h
@@ -28,6 +28,7 @@ G_BEGIN_DECLS
typedef struct _EmpathyNewCallDialog EmpathyNewCallDialog;
typedef struct _EmpathyNewCallDialogClass EmpathyNewCallDialogClass;
+typedef struct _EmpathyNewCallDialogPriv EmpathyNewCallDialogPriv;
struct _EmpathyNewCallDialogClass {
GtkDialogClass parent_class;
@@ -35,6 +36,8 @@ struct _EmpathyNewCallDialogClass {
struct _EmpathyNewCallDialog {
GtkDialog parent;
+
+ EmpathyNewCallDialogPriv *priv;
};
GType empathy_new_call_dialog_get_type (void);