ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/Darwin/gtk-osx.patch
(Generate patch)

Comparing BasiliskII/src/Unix/Darwin/gtk-osx.patch (file contents):
Revision 1.1 by gbeauche, 2006-05-05T05:56:20Z vs.
Revision 1.2 by gbeauche, 2006-05-05T06:00:17Z

# Line 3 | Line 3
3          * gtk/gtkaqua.c (gtk_aqua_draw_focus): Don't crash if "detail" is
4          NULL.
5  
6 +        * gdk/MacCarbonEvents.c (mouse_motion_handler): Another NULL
7 +        pointer check.
8 +
9   2006-04-17  Gwenole Beauchesne  <gb.public@free.fr>
10  
11          * glib-1.2.10/gmain.c (g_main_run): Don't block in
# Line 16 | Line 19
19  
20          * glib-1.2.10/glibconfig.h (G_VA_COPY): Don't redefine.
21  
22 + --- gtk-osx-0.7/gdk/MacCarbonEvents.c   Sat May  8 16:59:12 2004
23 + +++ gtk-osx-0.7/gdk/MacCarbonEvents.c   Fri May  5 07:48:45 2006
24 + @@ -227,7 +227,7 @@ mouse_motion_handler (EventHandlerCallRe
25 +     local_point.v = global_point.v;
26 +   }
27 +
28 + -  if (gdk_window != g_win_containing_mouse)
29 + +  if (gdk_window && gdk_window != g_win_containing_mouse)
30 +   {
31 +
32 +     if(GDK_LEAVE_NOTIFY_MASK & ((GdkWindowPrivate*) g_win_containing_mouse)->event_mask) {
33   --- gtk-osx-0.7/glib-1.2.10/glibconfig.h        Thu Jan  2 05:29:18 2003
34   +++ gtk-osx-0.7/glib-1.2.10/glibconfig.h        Mon Apr 17 21:12:34 2006
35   @@ -62,8 +62,9 @@ G_GNUC_EXTENSION typedef unsigned long l

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines