[cairo-commit] cairo/src cairo-pdf-surface.c,1.74,1.75
Carl Worth
commit at pdx.freedesktop.org
Wed Jan 18 16:44:21 PST 2006
Committed by: cworth
Update of /cvs/cairo/cairo/src
In directory gabe:/tmp/cvs-serv15437/src
Modified Files:
cairo-pdf-surface.c
Log Message:
2006-01-18 Carl Worth <cworth at cworth.org>
* src/cairo-pdf-surface.c: (cairo_pdf_surface_create_for_stream),
(cairo_pdf_surface_create): Fix compilation-breaking typo.
Index: cairo-pdf-surface.c
===================================================================
RCS file: /cvs/cairo/cairo/src/cairo-pdf-surface.c,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- cairo-pdf-surface.c 19 Jan 2006 00:40:17 -0000 1.74
+++ cairo-pdf-surface.c 19 Jan 2006 00:44:19 -0000 1.75
@@ -350,7 +350,8 @@
}
return _cairo_pdf_surface_create_for_stream_internal (stream, content,
- width, height);
+ width_in_points,
+ height_in_points);
}
/**
@@ -393,7 +394,8 @@
}
return _cairo_pdf_surface_create_for_stream_internal (stream, content,
- width, height);
+ width_in_points,
+ height_in_points);
}
static cairo_bool_t
More information about the cairo-commit
mailing list