summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorNick Schermer <nick@xfce.org>2010-02-26 14:08:20 +0100
committerNick Schermer <nick@xfce.org>2010-02-26 14:11:43 +0100
commitc1b8bd4a102d7ad2f09c129b4e9f9e664cfbe2a1 (patch)
tree331554f576d4fbbc32eec4a955745effed39bb98 /common
parente3e16d4f8c0e6279a6ba12b01d7aa192183a73b4 (diff)
downloadxfce4-panel-c1b8bd4a102d7ad2f09c129b4e9f9e664cfbe2a1.tar.gz
Fix a harmless compiler warning.
Diffstat (limited to 'common')
-rw-r--r--common/panel-xfconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/panel-xfconf.c b/common/panel-xfconf.c
index 0332046a..e3317c13 100644
--- a/common/panel-xfconf.c
+++ b/common/panel-xfconf.c
@@ -42,7 +42,7 @@ panel_properties_get_channel (GObject *object_for_weak_ref)
}
channel = xfconf_channel_get (XFCE_PANEL_PLUGIN_CHANNEL_NAME);
- g_object_weak_ref (object_for_weak_ref, xfconf_shutdown, NULL);
+ g_object_weak_ref (object_for_weak_ref, (GWeakNotify) xfconf_shutdown, NULL);
return channel;
}