aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2009-08-19 21:39:55 +0800
committerJonny Lamb <jonny.lamb@collabora.co.uk>2009-08-19 21:39:55 +0800
commitbbe5b582755870e4e3d4865f49d8ef9bb5db0b8d (patch)
treeddac96a8de8ca5d6deaeb5c37cef3d4761ca972c /libempathy
parent0d6ea34bb155e74a5ceac71cea9c550d7baaa85a (diff)
downloadgsoc2013-empathy-bbe5b582755870e4e3d4865f49d8ef9bb5db0b8d.tar
gsoc2013-empathy-bbe5b582755870e4e3d4865f49d8ef9bb5db0b8d.tar.gz
gsoc2013-empathy-bbe5b582755870e4e3d4865f49d8ef9bb5db0b8d.tar.bz2
gsoc2013-empathy-bbe5b582755870e4e3d4865f49d8ef9bb5db0b8d.tar.lz
gsoc2013-empathy-bbe5b582755870e4e3d4865f49d8ef9bb5db0b8d.tar.xz
gsoc2013-empathy-bbe5b582755870e4e3d4865f49d8ef9bb5db0b8d.tar.zst
gsoc2013-empathy-bbe5b582755870e4e3d4865f49d8ef9bb5db0b8d.zip
empathy-connectivity: stop using the name "manager" when I mean "connectivity"
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-connectivity.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy/empathy-connectivity.c b/libempathy/empathy-connectivity.c
index b724865ba..b38ee2d5d 100644
--- a/libempathy/empathy-connectivity.c
+++ b/libempathy/empathy-connectivity.c
@@ -119,13 +119,13 @@ static void
connectivity_finalize (GObject *object)
{
#ifdef HAVE_NM
- EmpathyConnectivity *manager = EMPATHY_CONNECTIVITY (object);
- EmpathyConnectivityPriv *priv = GET_PRIV (manager);
+ EmpathyConnectivity *connectivity = EMPATHY_CONNECTIVITY (object);
+ EmpathyConnectivityPriv *priv = GET_PRIV (connectivity);
if (priv->nm_client != NULL)
{
g_signal_handlers_disconnect_by_func (priv->nm_client,
- connectivity_nm_state_change_cb, manager);
+ connectivity_nm_state_change_cb, connectivity);
g_object_unref (priv->nm_client);
priv->nm_client = NULL;
}
@@ -137,8 +137,8 @@ connectivity_finalize (GObject *object)
static void
connectivity_dispose (GObject *object)
{
- EmpathyConnectivity *manager = EMPATHY_CONNECTIVITY (object);
- EmpathyConnectivityPriv *priv = GET_PRIV (manager);
+ EmpathyConnectivity *connectivity = EMPATHY_CONNECTIVITY (object);
+ EmpathyConnectivityPriv *priv = GET_PRIV (connectivity);
if (priv->dispose_run)
return;