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:
Carl Worth 2005-05-22 09:08:23 +00:00
parent b16dafe553
commit e90a5c8990
3 changed files with 11 additions and 3 deletions

View file

@ -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
View file

@ -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
-----------------------------------

View file

@ -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)
{