Fix sign error with queued region translations.

2001-03-16  Alexander Larsson  <alexl@redhat.com>

	* gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
	Fix sign error with queued region translations.
This commit is contained in:
Alexander Larsson 2001-03-16 08:05:21 +00:00 committed by Alexander Larsson
parent df726ee888
commit bd51a589b1
8 changed files with 36 additions and 1 deletions

View 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):

View 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):

View 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):

View 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):

View 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):

View 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):

View 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):

View 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);
}