]> Pileus Git - ~andy/gtk/commitdiff
check the iteration window variable, not just the window passed in. fixes
author4 <timj@birnet.org>
Tue, 5 Oct 2004 23:05:13 +0000 (23:05 +0000)
committerTim Janik <timj@src.gnome.org>
Tue, 5 Oct 2004 23:05:13 +0000 (23:05 +0000)
Wed Oct  6 00:45:04 2004    <timj@birnet.org>

        * gdk/gdkwindow.c (gdk_window_is_viewable): check the iteration window
        variable, not just the window passed in. fixes #145270.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/gdkwindow.c

index cb37cac8d4f8828ace84debeb989a18080b049db..255ddb4aa8fcd3e740589dae531a53bfd3544500 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Oct  6 00:45:04 2004    <timj@birnet.org>
+
+       * gdk/gdkwindow.c (gdk_window_is_viewable): check the iteration window
+       variable, not just the window passed in. fixes #145270.
+
 Tue Oct  5 21:00:54 2004  Tim Janik  <timj@gtk.org>
 
        * gtk/gtkwidget.c (gtk_widget_size_allocate): reverted my last change 
index cb37cac8d4f8828ace84debeb989a18080b049db..255ddb4aa8fcd3e740589dae531a53bfd3544500 100644 (file)
@@ -1,3 +1,8 @@
+Wed Oct  6 00:45:04 2004    <timj@birnet.org>
+
+       * gdk/gdkwindow.c (gdk_window_is_viewable): check the iteration window
+       variable, not just the window passed in. fixes #145270.
+
 Tue Oct  5 21:00:54 2004  Tim Janik  <timj@gtk.org>
 
        * gtk/gtkwidget.c (gtk_widget_size_allocate): reverted my last change 
index cb37cac8d4f8828ace84debeb989a18080b049db..255ddb4aa8fcd3e740589dae531a53bfd3544500 100644 (file)
@@ -1,3 +1,8 @@
+Wed Oct  6 00:45:04 2004    <timj@birnet.org>
+
+       * gdk/gdkwindow.c (gdk_window_is_viewable): check the iteration window
+       variable, not just the window passed in. fixes #145270.
+
 Tue Oct  5 21:00:54 2004  Tim Janik  <timj@gtk.org>
 
        * gtk/gtkwidget.c (gtk_widget_size_allocate): reverted my last change 
index cb37cac8d4f8828ace84debeb989a18080b049db..255ddb4aa8fcd3e740589dae531a53bfd3544500 100644 (file)
@@ -1,3 +1,8 @@
+Wed Oct  6 00:45:04 2004    <timj@birnet.org>
+
+       * gdk/gdkwindow.c (gdk_window_is_viewable): check the iteration window
+       variable, not just the window passed in. fixes #145270.
+
 Tue Oct  5 21:00:54 2004  Tim Janik  <timj@gtk.org>
 
        * gtk/gtkwidget.c (gtk_widget_size_allocate): reverted my last change 
index 089a434a72fcbdd55995dc869842a29ba1f8d5f7..556d1c9dabd35bb717735be4e341546cda7939ae 100644 (file)
@@ -827,7 +827,7 @@ gdk_window_is_viewable (GdkWindow *window)
         (private != (GdkWindowObject *)root_window) &&
         (GDK_WINDOW_TYPE (private) != GDK_WINDOW_FOREIGN))
     {
-      if (GDK_WINDOW_DESTROYED (window) || !GDK_WINDOW_IS_MAPPED (window))
+      if (GDK_WINDOW_DESTROYED (private) || !GDK_WINDOW_IS_MAPPED (private))
        return FALSE;
       
       private = (GdkWindowObject *)private->parent;