summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hult <rhult@codefactory.se>2002-03-22 17:47:51 +0000
committerRichard Hult <rhult@src.gnome.org>2002-03-22 17:47:51 +0000
commit56c5bd70a356a30d8bc2fbf5c88083219558768b (patch)
tree0cbaa77b92f164406284e2475758e3ad7c7856b4
parent7425e428470e093e48b5039daf32c5c122a914db (diff)
downloadgdk-pixbuf-56c5bd70a356a30d8bc2fbf5c88083219558768b.tar.gz
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.
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-25
-rw-r--r--ChangeLog.pre-2-45
-rw-r--r--ChangeLog.pre-2-65
-rw-r--r--ChangeLog.pre-2-85
-rw-r--r--gdk/gdkevents.c2
7 files changed, 31 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 62ffc23f1..b9bcaf8dc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
Partial fix for problem where keypad keys acted
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 62ffc23f1..b9bcaf8dc 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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>
Partial fix for problem where keypad keys acted
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 62ffc23f1..b9bcaf8dc 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -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>
Partial fix for problem where keypad keys acted
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 62ffc23f1..b9bcaf8dc 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -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>
Partial fix for problem where keypad keys acted
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 62ffc23f1..b9bcaf8dc 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -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>
Partial fix for problem where keypad keys acted
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 62ffc23f1..b9bcaf8dc 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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>
Partial fix for problem where keypad keys acted
diff --git a/gdk/gdkevents.c b/gdk/gdkevents.c
index 700ac797d..7e211789f 100644
--- a/gdk/gdkevents.c
+++ b/gdk/gdkevents.c
@@ -661,7 +661,7 @@ gdk_event_get_root_coords (GdkEvent *event,
if (x_root)
*x_root = x;
if (y_root)
- *y_root = x;
+ *y_root = y;
return fetched;
}