Remove trailing commas from enums, (some compilers like to complain about them).

This commit is contained in:
Carl Worth 2003-12-17 12:59:37 +00:00
parent 2eb2408ca7
commit decf8b395c
3 changed files with 13 additions and 9 deletions

View file

@ -1,3 +1,8 @@
2003-12-17 Carl Worth <cworth@east.isi.edu>
* src/cairo.h: Remove trailing commas from enums, (some compilers
like to complain about them).
2003-12-16 Dave Beckett <Dave.Beckett@bristol.ac.uk>
* README: Do not require libpixregion, libic.

13
README
View file

@ -26,7 +26,6 @@ Dependencies
Cairo currently requires the following supporting libraries:
libpixman
Xft2
fontconfig
freetype2
@ -37,15 +36,15 @@ There's not much documentation yet apart from the cairo.h header
file. We'll be correcting that shortly.
In the meantime, the cairo-demo module in CVS provides a few example
programs using Cairo. These may be helpful to a programmer just
beginning with Cairo. Also, familiarity with the PostScript imaging
model will help in understanding Cairo.
programs using cairo. These may be helpful to a programmer just
beginning with cairo. Also, familiarity with the PostScript imaging
model will help in understanding cairo.
History
-------
Cairo was developed by Carl Worth <cworth@isi.edu> and Keith Packard
<keithp@keithp.com>. Many thanks are due to Lyle Ramshaw without whose
patient help our ignorance would be much more apparent.
Cairo was originally developed by Carl Worth <cworth@isi.edu> and
Keith Packard <keithp@keithp.com>. Many thanks are due to Lyle Ramshaw
without whose patient help our ignorance would be much more apparent.
Mailing List
------------

View file

@ -138,7 +138,7 @@ typedef enum cairo_operator {
CAIRO_OPERATOR_ATOP_REVERSE,
CAIRO_OPERATOR_XOR,
CAIRO_OPERATOR_ADD,
CAIRO_OPERATOR_SATURATE,
CAIRO_OPERATOR_SATURATE
} cairo_operator_t;
extern void __external_linkage
@ -596,7 +596,7 @@ typedef enum cairo_filter {
CAIRO_FILTER_GOOD,
CAIRO_FILTER_BEST,
CAIRO_FILTER_NEAREST,
CAIRO_FILTER_BILINEAR,
CAIRO_FILTER_BILINEAR
} cairo_filter_t;
/* XXX: Rework this as a cairo function: cairo_set_pattern_filter */