diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2013-06-24 15:43:04 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2013-06-24 15:43:04 +0100 |
commit | 54cc43630ddf724722ebdfc1d6906dc1986b773d (patch) | |
tree | 29f6d74ce42ccef3026183153ee61ef45d041fd9 /gio/gdbusobjectproxy.c | |
parent | 6000bc9ea8a1d6da53304db8dd6a4880d52cb2d2 (diff) | |
download | glib-54cc43630ddf724722ebdfc1d6906dc1986b773d.tar.gz |
Rename the generated private data getter function
As it turns out, we have examples of internal functions called
type_name_get_private() in the wild (especially among older libraries),
so we need to use a name for the per-instance private data getter
function that hopefully won't conflict with anything.
Diffstat (limited to 'gio/gdbusobjectproxy.c')
-rw-r--r-- | gio/gdbusobjectproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gdbusobjectproxy.c b/gio/gdbusobjectproxy.c index 5844a6ba4..2ed1bb4ce 100644 --- a/gio/gdbusobjectproxy.c +++ b/gio/gdbusobjectproxy.c @@ -183,7 +183,7 @@ g_dbus_object_proxy_class_init (GDBusObjectProxyClass *klass) static void g_dbus_object_proxy_init (GDBusObjectProxy *proxy) { - proxy->priv = g_dbus_object_proxy_get_private (proxy); + proxy->priv = g_dbus_object_proxy_get_instance_private (proxy); g_mutex_init (&proxy->priv->lock); proxy->priv->map_name_to_iface = g_hash_table_new_full (g_str_hash, g_str_equal, |