mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +00:00
Remove debug messages from GdkDevice
This commit is contained in:
parent
198fc0b774
commit
ec82d133b1
@ -841,8 +841,6 @@ _gdk_device_set_device_type (GdkDevice *device,
|
||||
{
|
||||
priv->type = type;
|
||||
|
||||
g_print ("Setting device type to %d\n", type);
|
||||
|
||||
g_object_notify (G_OBJECT (device), "type");
|
||||
}
|
||||
}
|
||||
@ -915,10 +913,6 @@ _gdk_device_add_slave (GdkDevice *device,
|
||||
|
||||
priv = device->priv;
|
||||
|
||||
g_print ("Adding %s ---> %s\n",
|
||||
gdk_device_get_name (slave),
|
||||
gdk_device_get_name (device));
|
||||
|
||||
if (!g_list_find (priv->slaves, slave))
|
||||
priv->slaves = g_list_prepend (priv->slaves, slave);
|
||||
}
|
||||
@ -939,10 +933,6 @@ _gdk_device_remove_slave (GdkDevice *device,
|
||||
if (!elem)
|
||||
return;
|
||||
|
||||
g_print ("Removing %s ---> %s\n",
|
||||
gdk_device_get_name (slave),
|
||||
gdk_device_get_name (device));
|
||||
|
||||
priv->slaves = g_list_delete_link (priv->slaves, elem);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user