mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-03 15:58:00 +02:00
Not that a patch has been submitted for consistent error handling.
Fix documentation string for cairo_create so that it might actualyl appear in the manual.
This commit is contained in:
parent
b16dafe553
commit
e90a5c8990
3 changed files with 11 additions and 3 deletions
|
|
@ -1,3 +1,11 @@
|
|||
2005-05-22 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* TODO: Not that a patch has been submitted for consistent error
|
||||
handling.
|
||||
|
||||
* src/cairo.c: Fix documentation string for cairo_create so that
|
||||
it might actualyl appear in the manual.
|
||||
|
||||
2005-05-18 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* configure.in: Add -head to CAIRO_VERSION after tagging with
|
||||
|
|
|
|||
2
TODO
2
TODO
|
|
@ -10,7 +10,7 @@ New functionality (more-or-less)
|
|||
--------------------------------
|
||||
cairo_begin_group, cairo_end_group, cairo_get_group
|
||||
cairo_<device>_surface_mark_dirty
|
||||
Consistent error handling for all objects
|
||||
P Consistent error handling for all objects
|
||||
|
||||
Somewhat backwards-compatible changes
|
||||
-----------------------------------
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ cairo_sane_state (cairo_t *cr)
|
|||
#define CAIRO_CHECK_SANITY(cr) assert(cairo_sane_state ((cr)))
|
||||
#endif
|
||||
|
||||
/*
|
||||
/**
|
||||
* cairo_create:
|
||||
* @target: target surface for the context
|
||||
*
|
||||
|
|
@ -100,7 +100,7 @@ cairo_sane_state (cairo_t *cr)
|
|||
* Return value: a newly allocated #cairo_t with a reference
|
||||
* count of 1. The initial reference count should be released
|
||||
* with cairo_destroy() when you are done using the #cairo_t.
|
||||
*/
|
||||
**/
|
||||
cairo_t *
|
||||
cairo_create (cairo_surface_t *target)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue