aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-call-window.h
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2011-02-23 19:28:23 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2011-02-23 22:50:44 +0800
commit2bf850dac794b120ff77b295dc3535dbab9a38fa (patch)
treeb448bfa6b5cfbfc6651d663b2441362e1c38ac62 /src/empathy-call-window.h
parent1825a527b99eb977f8399ff60355b5ef08e5b9f3 (diff)
downloadgsoc2013-empathy-2bf850dac794b120ff77b295dc3535dbab9a38fa.tar
gsoc2013-empathy-2bf850dac794b120ff77b295dc3535dbab9a38fa.tar.gz
gsoc2013-empathy-2bf850dac794b120ff77b295dc3535dbab9a38fa.tar.bz2
gsoc2013-empathy-2bf850dac794b120ff77b295dc3535dbab9a38fa.tar.lz
gsoc2013-empathy-2bf850dac794b120ff77b295dc3535dbab9a38fa.tar.xz
gsoc2013-empathy-2bf850dac794b120ff77b295dc3535dbab9a38fa.tar.zst
gsoc2013-empathy-2bf850dac794b120ff77b295dc3535dbab9a38fa.zip
Move to using ->priv pointer in the object instance
Diffstat (limited to 'src/empathy-call-window.h')
-rw-r--r--src/empathy-call-window.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/empathy-call-window.h b/src/empathy-call-window.h
index d02b2ed62..11237fff6 100644
--- a/src/empathy-call-window.h
+++ b/src/empathy-call-window.h
@@ -29,6 +29,7 @@
G_BEGIN_DECLS
typedef struct _EmpathyCallWindow EmpathyCallWindow;
+typedef struct _EmpathyCallWindowPriv EmpathyCallWindowPriv;
typedef struct _EmpathyCallWindowClass EmpathyCallWindowClass;
struct _EmpathyCallWindowClass {
@@ -37,6 +38,7 @@ struct _EmpathyCallWindowClass {
struct _EmpathyCallWindow {
GtkWindow parent;
+ EmpathyCallWindowPriv *priv;
};
GType empathy_call_window_get_type (void);