diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2011-04-08 16:23:39 +0200 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2011-04-08 16:39:45 +0200 |
commit | db74a6e81626730b91e49ae855270e616d7c6f5d (patch) | |
tree | 806f3d064343538c988e1b218b593ae4559b865d /gdk/x11/gdkdevice-xi2.c | |
parent | 955f01cdf7ae1be4f19d7091a855c628470bbcc6 (diff) | |
download | gtk+-db74a6e81626730b91e49ae855270e616d7c6f5d.tar.gz |
GdkDevice: Remove duplicate private function
_gdk_device_get_axis_use() dates back to pre-sealing, when the
xi2 work began, this remaining can be gone with a public
gdk_device_get_axis_use() function already in place.
Diffstat (limited to 'gdk/x11/gdkdevice-xi2.c')
-rw-r--r-- | gdk/x11/gdkdevice-xi2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/x11/gdkdevice-xi2.c b/gdk/x11/gdkdevice-xi2.c index 96715df874..d56f8fa4b9 100644 --- a/gdk/x11/gdkdevice-xi2.c +++ b/gdk/x11/gdkdevice-xi2.c @@ -205,7 +205,7 @@ gdk_x11_device_xi2_get_state (GdkDevice *device, continue; value = ((XIValuatorClassInfo *) class_info)->value; - use = _gdk_device_get_axis_use (device, j); + use = gdk_device_get_axis_use (device, j); switch (use) { |