summaryrefslogtreecommitdiffstats
path: root/src/helper
diff options
context:
space:
mode:
authorjohnce <johnce@users.sourceforge.net>2009-08-05 06:05:12 +0000
committerjohnce <johnce@users.sourceforge.net>2009-08-05 06:05:12 +0000
commit56cbd9ce3b1f5116c22250d74ead66a0feb3ffa5 (patch)
tree63e0a6f00e72f1a5b7fc4fe38dfdfc966e8d03a4 /src/helper
parentSPDocument->Document (diff)
downloadinkscape-56cbd9ce3b1f5116c22250d74ead66a0feb3ffa5.tar.gz
inkscape-56cbd9ce3b1f5116c22250d74ead66a0feb3ffa5.zip
SPDocument->Document
(bzr r8406)
Diffstat (limited to 'src/helper')
-rw-r--r--src/helper/pixbuf-ops.h6
-rw-r--r--src/helper/png-write.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/helper/pixbuf-ops.h b/src/helper/pixbuf-ops.h
index a985be297..de6a80181 100644
--- a/src/helper/pixbuf-ops.h
+++ b/src/helper/pixbuf-ops.h
@@ -14,12 +14,12 @@
#include <glib/gtypes.h>
-struct SPDocument;
+struct Document;
-bool sp_export_jpg_file (SPDocument *doc, gchar const *filename, double x0, double y0, double x1, double y1,
+bool sp_export_jpg_file (Document *doc, gchar const *filename, double x0, double y0, double x1, double y1,
unsigned int width, unsigned int height, double xdpi, double ydpi, unsigned long bgcolor, double quality, GSList *items_only = NULL);
-GdkPixbuf* sp_generate_internal_bitmap(SPDocument *doc, gchar const *filename,
+GdkPixbuf* sp_generate_internal_bitmap(Document *doc, gchar const *filename,
double x0, double y0, double x1, double y1,
unsigned width, unsigned height, double xdpi, double ydpi,
unsigned long bgcolor, GSList *items_only = NULL);
diff --git a/src/helper/png-write.h b/src/helper/png-write.h
index 83321aa4e..f7e372e0b 100644
--- a/src/helper/png-write.h
+++ b/src/helper/png-write.h
@@ -14,14 +14,14 @@
#include <glib/gtypes.h>
#include <2geom/forward.h>
-struct SPDocument;
+struct Document;
-bool sp_export_png_file (SPDocument *doc, gchar const *filename,
+bool sp_export_png_file (Document *doc, gchar const *filename,
double x0, double y0, double x1, double y1,
unsigned long int width, unsigned long int height, double xdpi, double ydpi,
unsigned long bgcolor,
unsigned int (*status) (float, void *), void *data, bool force_overwrite = false, GSList *items_only = NULL);
-bool sp_export_png_file (SPDocument *doc, gchar const *filename,
+bool sp_export_png_file (Document *doc, gchar const *filename,
Geom::Rect const &area,
unsigned long int width, unsigned long int height, double xdpi, double ydpi,
unsigned long bgcolor,