Fix compilation-breaking typo.

This commit is contained in:
Carl Worth 2006-01-18 16:44:19 +00:00
parent c634e54775
commit ec45efa57c
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2006-01-18 Carl Worth <cworth@cworth.org>
* src/cairo-pdf-surface.c: (cairo_pdf_surface_create_for_stream),
(cairo_pdf_surface_create): Fix compilation-breaking typo.
2006-01-18 Carl Worth <cworth@cworth.org>
* src/cairo-image-surface.c: Change documentation to recommend

View file

@ -350,7 +350,8 @@ cairo_pdf_surface_create_for_stream (cairo_write_func_t write,
}
return _cairo_pdf_surface_create_for_stream_internal (stream, content,
width, height);
width_in_points,
height_in_points);
}
/**
@ -393,7 +394,8 @@ cairo_pdf_surface_create (const char *filename,
}
return _cairo_pdf_surface_create_for_stream_internal (stream, content,
width, height);
width_in_points,
height_in_points);
}
static cairo_bool_t