[cairo-commit] cairo/src cairo-xcb-surface.c, 1.36,
1.37 cairo-xlib-surface.c, 1.80, 1.81
Owen Taylor
commit at pdx.freedesktop.org
Fri Jun 17 16:19:10 PDT 2005
Committed by: otaylor
Update of /cvs/cairo/cairo/src
In directory gabe:/tmp/cvs-serv3239/src
Modified Files:
cairo-xcb-surface.c cairo-xlib-surface.c
Log Message:
2005-06-17 Owen Taylor <otaylor at redhat.com>
* src/cairo-xcb-surface.c (_get_image_surface)
* src/cairo-xlib-surface.c (_get_image_surface): Fix
width/height typo.
Index: cairo-xcb-surface.c
===================================================================
RCS file: /cvs/cairo/cairo/src/cairo-xcb-surface.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- cairo-xcb-surface.c 15 Jun 2005 02:45:23 -0000 1.36
+++ cairo-xcb-surface.c 17 Jun 2005 23:19:08 -0000 1.37
@@ -370,7 +370,7 @@
rect.x = interest_rect->x;
rect.y = interest_rect->y;
rect.width = interest_rect->width;
- rect.height = interest_rect->width;
+ rect.height = interest_rect->height;
if (rect.x > x1)
x1 = rect.x;
Index: cairo-xlib-surface.c
===================================================================
RCS file: /cvs/cairo/cairo/src/cairo-xlib-surface.c,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -d -r1.80 -r1.81
--- cairo-xlib-surface.c 17 Jun 2005 20:25:19 -0000 1.80
+++ cairo-xlib-surface.c 17 Jun 2005 23:19:08 -0000 1.81
@@ -291,7 +291,7 @@
rect.x = interest_rect->x;
rect.y = interest_rect->y;
rect.width = interest_rect->width;
- rect.height = interest_rect->width;
+ rect.height = interest_rect->height;
if (rect.x > x1)
x1 = rect.x;
More information about the cairo-commit
mailing list