mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 07:23:41 +02:00
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.
This commit is contained in:
@@ -160,7 +160,7 @@ g_network_address_connectable_iface_init (GSocketConnectableIface *connectable_i
|
||||
static void
|
||||
g_network_address_init (GNetworkAddress *addr)
|
||||
{
|
||||
addr->priv = g_network_address_get_private (addr);
|
||||
addr->priv = g_network_address_get_instance_private (addr);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user