Fix typo, where x value was assigned to both x and y.
2002-03-22 Richard Hult <rhult@codefactory.se> * gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x value was assigned to both x and y.
This commit is contained in:

committed by
Richard Hult

parent
7425e42847
commit
56c5bd70a3
@ -1,3 +1,8 @@
|
|||||||
|
2002-03-22 Richard Hult <rhult@codefactory.se>
|
||||||
|
|
||||||
|
* gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
|
||||||
|
value was assigned to both x and y.
|
||||||
|
|
||||||
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Partial fix for problem where keypad keys acted
|
Partial fix for problem where keypad keys acted
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-03-22 Richard Hult <rhult@codefactory.se>
|
||||||
|
|
||||||
|
* gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
|
||||||
|
value was assigned to both x and y.
|
||||||
|
|
||||||
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Partial fix for problem where keypad keys acted
|
Partial fix for problem where keypad keys acted
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-03-22 Richard Hult <rhult@codefactory.se>
|
||||||
|
|
||||||
|
* gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
|
||||||
|
value was assigned to both x and y.
|
||||||
|
|
||||||
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Partial fix for problem where keypad keys acted
|
Partial fix for problem where keypad keys acted
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-03-22 Richard Hult <rhult@codefactory.se>
|
||||||
|
|
||||||
|
* gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
|
||||||
|
value was assigned to both x and y.
|
||||||
|
|
||||||
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Partial fix for problem where keypad keys acted
|
Partial fix for problem where keypad keys acted
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-03-22 Richard Hult <rhult@codefactory.se>
|
||||||
|
|
||||||
|
* gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
|
||||||
|
value was assigned to both x and y.
|
||||||
|
|
||||||
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Partial fix for problem where keypad keys acted
|
Partial fix for problem where keypad keys acted
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-03-22 Richard Hult <rhult@codefactory.se>
|
||||||
|
|
||||||
|
* gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
|
||||||
|
value was assigned to both x and y.
|
||||||
|
|
||||||
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
Fri Mar 22 11:29:11 2002 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
Partial fix for problem where keypad keys acted
|
Partial fix for problem where keypad keys acted
|
||||||
|
@ -661,7 +661,7 @@ gdk_event_get_root_coords (GdkEvent *event,
|
|||||||
if (x_root)
|
if (x_root)
|
||||||
*x_root = x;
|
*x_root = x;
|
||||||
if (y_root)
|
if (y_root)
|
||||||
*y_root = x;
|
*y_root = y;
|
||||||
|
|
||||||
return fetched;
|
return fetched;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user