aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-call-handler.c
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2011-03-17 19:31:25 +0800
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-06-09 17:20:07 +0800
commitcf83cc9c5a936c88e7e22033956001c4638b7d14 (patch)
tree07bee4e7c2bab647d68fa11b90784986f15a7fea /src/empathy-call-handler.c
parentb49fd754dd479be529fc12d2e82498ed02d31512 (diff)
downloadgsoc2013-empathy-cf83cc9c5a936c88e7e22033956001c4638b7d14.tar
gsoc2013-empathy-cf83cc9c5a936c88e7e22033956001c4638b7d14.tar.gz
gsoc2013-empathy-cf83cc9c5a936c88e7e22033956001c4638b7d14.tar.bz2
gsoc2013-empathy-cf83cc9c5a936c88e7e22033956001c4638b7d14.tar.lz
gsoc2013-empathy-cf83cc9c5a936c88e7e22033956001c4638b7d14.tar.xz
gsoc2013-empathy-cf83cc9c5a936c88e7e22033956001c4638b7d14.tar.zst
gsoc2013-empathy-cf83cc9c5a936c88e7e22033956001c4638b7d14.zip
Use modern private structure handling
Diffstat (limited to 'src/empathy-call-handler.c')
-rw-r--r--src/empathy-call-handler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-call-handler.c b/src/empathy-call-handler.c
index e35afbde7..02a5af691 100644
--- a/src/empathy-call-handler.c
+++ b/src/empathy-call-handler.c
@@ -76,7 +76,7 @@ enum {
/* private structure */
-typedef struct {
+struct _EmpathyCallHandlerPriv {
TpyCallChannel *call;
EmpathyContact *contact;
@@ -94,7 +94,7 @@ typedef struct {
FsCandidate *video_remote_candidate;
FsCandidate *audio_local_candidate;
FsCandidate *video_local_candidate;
-} EmpathyCallHandlerPriv;
+};
#define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyCallHandler)