diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2008-05-09 13:07:45 +0200 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2008-05-09 15:54:12 +0200 |
commit | 2a9bb6f78c8a0fa47908da7863979560230a62a2 (patch) | |
tree | 96332c455d3cd6883ee3446de2ebf99d7e9b2fa1 /src/cairo-misc.c | |
parent | 4d77dfc78d2ea1925d0035080f57b68b0269a5f0 (diff) |
Add CAIRO_STATUS_FONT_TYPE_MISMATCH
Diffstat (limited to 'src/cairo-misc.c')
-rw-r--r-- | src/cairo-misc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cairo-misc.c b/src/cairo-misc.c index a2250ffb..b85d98f5 100644 --- a/src/cairo-misc.c +++ b/src/cairo-misc.c @@ -101,6 +101,8 @@ cairo_status_to_string (cairo_status_t status) return "error creating or writing to a temporary file"; case CAIRO_STATUS_INVALID_STRIDE: return "invalid value for stride"; + case CAIRO_STATUS_FONT_TYPE_MISMATCH: + return "the font type is not appropriate for the operation"; } return "<unknown error status>"; |