diff options
author | Michael Natterer <mitch@gimp.org> | 2010-10-20 12:49:25 +0200 |
---|---|---|
committer | Michael Natterer <mitch@gimp.org> | 2010-10-20 12:50:21 +0200 |
commit | 283f7ddd6c56ec9d81e7013c8809967da87231b2 (patch) | |
tree | 57e32a9bc23a2d68922b45f876bd91543e9c8ef2 /tests/testinput.c | |
parent | 2cc059a0e7ee382606351355780b53ae6a7229d9 (diff) | |
download | gtk+-283f7ddd6c56ec9d81e7013c8809967da87231b2.tar.gz |
tests: gdk_device_get_history() takes "gint *n_events" again, not guint
Diffstat (limited to 'tests/testinput.c')
-rw-r--r-- | tests/testinput.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testinput.c b/tests/testinput.c index 5d353bd7c6..c7149a8386 100644 --- a/tests/testinput.c +++ b/tests/testinput.c @@ -213,7 +213,7 @@ static gint motion_notify_event (GtkWidget *widget, GdkEventMotion *event) { GdkTimeCoord **events; - guint n_events; + gint n_events; int i; current_device = event->device; |