diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-04-19 23:25:15 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-04-20 21:13:35 +0800 |
commit | 2f5f9eb6d3d4185f9a20c158567ccdd969df52d9 (patch) | |
tree | 161a01bba6fe75e2616074485115dae5f2f2da9c /libempathy-gtk/empathy-location-manager.h | |
parent | d98211ce5e4f1c092c4d8b2ebcb2734c00eb9548 (diff) | |
download | gsoc2013-empathy-2f5f9eb6d3d4185f9a20c158567ccdd969df52d9.tar gsoc2013-empathy-2f5f9eb6d3d4185f9a20c158567ccdd969df52d9.tar.gz gsoc2013-empathy-2f5f9eb6d3d4185f9a20c158567ccdd969df52d9.tar.bz2 gsoc2013-empathy-2f5f9eb6d3d4185f9a20c158567ccdd969df52d9.tar.lz gsoc2013-empathy-2f5f9eb6d3d4185f9a20c158567ccdd969df52d9.tar.xz gsoc2013-empathy-2f5f9eb6d3d4185f9a20c158567ccdd969df52d9.tar.zst gsoc2013-empathy-2f5f9eb6d3d4185f9a20c158567ccdd969df52d9.zip |
location-manager: use the self->priv pattern
Diffstat (limited to 'libempathy-gtk/empathy-location-manager.h')
-rw-r--r-- | libempathy-gtk/empathy-location-manager.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-location-manager.h b/libempathy-gtk/empathy-location-manager.h index 092ef0809..525e490bb 100644 --- a/libempathy-gtk/empathy-location-manager.h +++ b/libempathy-gtk/empathy-location-manager.h @@ -37,11 +37,12 @@ G_BEGIN_DECLS typedef struct _EmpathyLocationManager EmpathyLocationManager; typedef struct _EmpathyLocationManagerClass EmpathyLocationManagerClass; +typedef struct _EmpathyLocationManagerPrivate EmpathyLocationManagerPrivate; struct _EmpathyLocationManager { GObject parent; - gpointer priv; + EmpathyLocationManagerPrivate *priv; }; struct _EmpathyLocationManagerClass |