diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2007-04-03 19:26:18 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2007-04-03 19:26:18 -0400 |
commit | 88dc0c5f19475888c19db437661b290f3a8902f8 (patch) | |
tree | 4598404f08272bbf807b1b5cabcb9a92c9a50e48 /src/cairo-clip-private.h | |
parent | 114be945db6c02aeb60cf1123b43680bd12cccdb (diff) |
Make sure all nil objects start with _cairo_
Previously, the convention was that static ones started with cairo_, but
renamed to start with _cairo_ when they were needed from other files and
became cairo_private instead of static...
This is error prune indeed, and two symbols were already violating. Now
all nil objects start with _cairo_.
Diffstat (limited to 'src/cairo-clip-private.h')
-rw-r--r-- | src/cairo-clip-private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-clip-private.h b/src/cairo-clip-private.h index 3c4ff0d4..d2811d5d 100644 --- a/src/cairo-clip-private.h +++ b/src/cairo-clip-private.h @@ -38,7 +38,7 @@ #include "cairo-path-fixed-private.h" -extern cairo_private const cairo_rectangle_list_t _cairo_rectangles_nil; +extern const cairo_private cairo_rectangle_list_t _cairo_rectangles_nil; struct _cairo_clip_path { unsigned int ref_count; |