]> Pileus Git - ~andy/gtk/commitdiff
Fix a copy-and-paste error. (#158459)
authorMatthias Clasen <mclasen@redhat.com>
Tue, 16 Nov 2004 17:32:15 +0000 (17:32 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 16 Nov 2004 17:32:15 +0000 (17:32 +0000)
2004-11-16  Matthias Clasen  <mclasen@redhat.com>

* gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix a
copy-and-paste error.  (#158459)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/win32/gdkevents-win32.c

index 52225956b13283ea1729eed06378da262d091982..6b14eafb4c3f983d5ccc1e50fe51cee4a97cd60e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@
 
 2004-11-16  Matthias Clasen  <mclasen@redhat.com>
 
+       * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix a 
+       copy-and-paste error.  (#158459) 
+
        * demos/gtk-demo/*.c: Don't include config.h in the examples.
 
 Tue Nov 16 00:08:07 2004  Jonathan Blandford  <jrb@redhat.com>
index 52225956b13283ea1729eed06378da262d091982..6b14eafb4c3f983d5ccc1e50fe51cee4a97cd60e 100644 (file)
@@ -5,6 +5,9 @@
 
 2004-11-16  Matthias Clasen  <mclasen@redhat.com>
 
+       * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix a 
+       copy-and-paste error.  (#158459) 
+
        * demos/gtk-demo/*.c: Don't include config.h in the examples.
 
 Tue Nov 16 00:08:07 2004  Jonathan Blandford  <jrb@redhat.com>
index 52225956b13283ea1729eed06378da262d091982..6b14eafb4c3f983d5ccc1e50fe51cee4a97cd60e 100644 (file)
@@ -5,6 +5,9 @@
 
 2004-11-16  Matthias Clasen  <mclasen@redhat.com>
 
+       * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix a 
+       copy-and-paste error.  (#158459) 
+
        * demos/gtk-demo/*.c: Don't include config.h in the examples.
 
 Tue Nov 16 00:08:07 2004  Jonathan Blandford  <jrb@redhat.com>
index 52225956b13283ea1729eed06378da262d091982..6b14eafb4c3f983d5ccc1e50fe51cee4a97cd60e 100644 (file)
@@ -5,6 +5,9 @@
 
 2004-11-16  Matthias Clasen  <mclasen@redhat.com>
 
+       * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix a 
+       copy-and-paste error.  (#158459) 
+
        * demos/gtk-demo/*.c: Don't include config.h in the examples.
 
 Tue Nov 16 00:08:07 2004  Jonathan Blandford  <jrb@redhat.com>
index 8cc9fbdfca7771784b94c9655e3de4c2e6bb2829..3e14cf904e2601170859793ec0a9c26d172e52a9 100644 (file)
@@ -3282,7 +3282,7 @@ gdk_event_translate (GdkDisplay *display,
          maxw = rect.right - rect.left;
          maxh = rect.bottom - rect.top;
          mmi->ptMaxTrackSize.x = maxw > 0 && maxw < G_MAXSHORT ? maxw : G_MAXSHORT;
-         mmi->ptMaxTrackSize.y = maxh > 0 && maxh < G_MAXSHORT ? maxw : G_MAXSHORT;
+         mmi->ptMaxTrackSize.y = maxh > 0 && maxh < G_MAXSHORT ? maxh : G_MAXSHORT;
        }
 
       if (impl->hint_flags & (GDK_HINT_MIN_SIZE | GDK_HINT_MAX_SIZE))