mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-03 11:17:58 +02:00
Fix compilation-breaking typo.
This commit is contained in:
parent
c634e54775
commit
ec45efa57c
2 changed files with 9 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue