]> Pileus Git - ~andy/gtk/commitdiff
Fix sign error with queued region translations.
authorAlexander Larsson <alexl@redhat.com>
Fri, 16 Mar 2001 08:05:21 +0000 (08:05 +0000)
committerAlexander Larsson <alexl@src.gnome.org>
Fri, 16 Mar 2001 08:05:21 +0000 (08:05 +0000)
2001-03-16  Alexander Larsson  <alexl@redhat.com>

* gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
Fix sign error with queued region translations.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/x11/gdkgeometry-x11.c

index cbf652d1d5ff2e3e089d722864f4697c0f7a0b36..e4f9b0686079693a47ab6cf11b942b5f3b59807d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-16  Alexander Larsson  <alexl@redhat.com>
+
+       * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
+       Fix sign error with queued region translations.
+
 2001-03-15  HideToshi Tajima  <tajima@happy>
 
        * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
index cbf652d1d5ff2e3e089d722864f4697c0f7a0b36..e4f9b0686079693a47ab6cf11b942b5f3b59807d 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-16  Alexander Larsson  <alexl@redhat.com>
+
+       * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
+       Fix sign error with queued region translations.
+
 2001-03-15  HideToshi Tajima  <tajima@happy>
 
        * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
index cbf652d1d5ff2e3e089d722864f4697c0f7a0b36..e4f9b0686079693a47ab6cf11b942b5f3b59807d 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-16  Alexander Larsson  <alexl@redhat.com>
+
+       * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
+       Fix sign error with queued region translations.
+
 2001-03-15  HideToshi Tajima  <tajima@happy>
 
        * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
index cbf652d1d5ff2e3e089d722864f4697c0f7a0b36..e4f9b0686079693a47ab6cf11b942b5f3b59807d 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-16  Alexander Larsson  <alexl@redhat.com>
+
+       * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
+       Fix sign error with queued region translations.
+
 2001-03-15  HideToshi Tajima  <tajima@happy>
 
        * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
index cbf652d1d5ff2e3e089d722864f4697c0f7a0b36..e4f9b0686079693a47ab6cf11b942b5f3b59807d 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-16  Alexander Larsson  <alexl@redhat.com>
+
+       * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
+       Fix sign error with queued region translations.
+
 2001-03-15  HideToshi Tajima  <tajima@happy>
 
        * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
index cbf652d1d5ff2e3e089d722864f4697c0f7a0b36..e4f9b0686079693a47ab6cf11b942b5f3b59807d 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-16  Alexander Larsson  <alexl@redhat.com>
+
+       * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
+       Fix sign error with queued region translations.
+
 2001-03-15  HideToshi Tajima  <tajima@happy>
 
        * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
index cbf652d1d5ff2e3e089d722864f4697c0f7a0b36..e4f9b0686079693a47ab6cf11b942b5f3b59807d 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-16  Alexander Larsson  <alexl@redhat.com>
+
+       * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
+       Fix sign error with queued region translations.
+
 2001-03-15  HideToshi Tajima  <tajima@happy>
 
        * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
index 17b6f8b9d59d2d8b233177a0094602b763bfa350..dff7274f67c423b2e90931a0c4911ce129e0e162 100644 (file)
@@ -722,7 +722,7 @@ _gdk_window_process_expose (GdkWindow    *window,
          if (item->window == window)
            {
              if (item->type == GDK_WINDOW_QUEUE_TRANSLATE)
-               gdk_region_offset (invalidate_region, - item->u.translate.dx, - item->u.translate.dy);
+               gdk_region_offset (invalidate_region, item->u.translate.dx, item->u.translate.dy);
              else              /* anti-expose */
                gdk_region_subtract (invalidate_region, item->u.antiexpose.area);
            }