diff options
author | Marco Barisione <marco.barisione@collabora.co.uk> | 2013-05-11 00:01:31 +0800 |
---|---|---|
committer | Marco Barisione <marco.barisione@collabora.co.uk> | 2013-08-20 18:03:06 +0800 |
commit | 3abe4df5f32c37e968d0556c755b8387d9f1f771 (patch) | |
tree | ec24331ac656b5292b2c3400e3399de80aa7c79d /tp-account-widgets/tpaw-irc-network-chooser-dialog.h | |
parent | 7eae2e49e62834cfff13cc2ee10b37eaff38a6fb (diff) | |
download | gsoc2013-empathy-3abe4df5f32c37e968d0556c755b8387d9f1f771.tar gsoc2013-empathy-3abe4df5f32c37e968d0556c755b8387d9f1f771.tar.gz gsoc2013-empathy-3abe4df5f32c37e968d0556c755b8387d9f1f771.tar.bz2 gsoc2013-empathy-3abe4df5f32c37e968d0556c755b8387d9f1f771.tar.lz gsoc2013-empathy-3abe4df5f32c37e968d0556c755b8387d9f1f771.tar.xz gsoc2013-empathy-3abe4df5f32c37e968d0556c755b8387d9f1f771.tar.zst gsoc2013-empathy-3abe4df5f32c37e968d0556c755b8387d9f1f771.zip |
tpaw-utils: use self->priv instead of EMPATHY_GET_PRIV(self)
https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'tp-account-widgets/tpaw-irc-network-chooser-dialog.h')
-rw-r--r-- | tp-account-widgets/tpaw-irc-network-chooser-dialog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tp-account-widgets/tpaw-irc-network-chooser-dialog.h b/tp-account-widgets/tpaw-irc-network-chooser-dialog.h index 6549b7063..fb5edf1f8 100644 --- a/tp-account-widgets/tpaw-irc-network-chooser-dialog.h +++ b/tp-account-widgets/tpaw-irc-network-chooser-dialog.h @@ -42,11 +42,13 @@ G_BEGIN_DECLS G_TYPE_INSTANCE_GET_CLASS ((o), TPAW_TYPE_IRC_NETWORK_CHOOSER_DIALOG, \ TpawIrcNetworkChooserDialogClass)) +typedef struct _TpawIrcNetworkChooserDialogPriv TpawIrcNetworkChooserDialogPriv; + typedef struct { GtkDialog parent; /*<private>*/ - gpointer priv; + TpawIrcNetworkChooserDialogPriv *priv; } TpawIrcNetworkChooserDialog; typedef struct { |