diff options
| author | miklosh <miklosh@users.sourceforge.net> | 2006-08-10 21:11:33 +0000 |
|---|---|---|
| committer | miklosh <miklosh@users.sourceforge.net> | 2006-08-10 21:11:33 +0000 |
| commit | ef70b93592d99428a47d964637e464d3a9e63707 (patch) | |
| tree | 850cfc7eeb0cf03ef41857b70a8c6c0a82bcd142 /src | |
| parent | Use std::vector. (diff) | |
| download | inkscape-ef70b93592d99428a47d964637e464d3a9e63707.tar.gz inkscape-ef70b93592d99428a47d964637e464d3a9e63707.zip | |
Removed left-in debug stuff.
(bzr r1579)
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/internal/pdf-cairo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extension/internal/pdf-cairo.cpp b/src/extension/internal/pdf-cairo.cpp index ed842e61f..28ce5384a 100644 --- a/src/extension/internal/pdf-cairo.cpp +++ b/src/extension/internal/pdf-cairo.cpp @@ -571,7 +571,7 @@ PrintCairoPDF::fill(Inkscape::Extension::Print *mod, NRBPath const *bpath, NRMat } else { cairo_set_fill_rule(cr, CAIRO_FILL_RULE_WINDING); } - if (0 && alpha != 1.0 && + if (alpha != 1.0 && style->fill.type != SP_PAINT_TYPE_COLOR) { cairo_clip (cr); @@ -710,7 +710,7 @@ PrintCairoPDF::image(Inkscape::Extension::Print *mod, guchar *px, unsigned int w cairo_surface_t *image_surface = cairo_image_surface_create_for_data(px_rgba, CAIRO_FORMAT_ARGB32, w, h, w * 4); if (cairo_surface_status(image_surface)) { - g_printf("%s\n", cairo_status_to_string(cairo_surface_status(image_surface))); + g_printf("Error: %s\n", cairo_status_to_string(cairo_surface_status(image_surface))); return 0; } |
