summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a02211f)
raw | patch | inline | side by side (parent: a02211f)
author | johnce <johnce@users.sourceforge.net> | |
Wed, 5 Aug 2009 06:39:04 +0000 (06:39 +0000) | ||
committer | johnce <johnce@users.sourceforge.net> | |
Wed, 5 Aug 2009 06:39:04 +0000 (06:39 +0000) |
src/extension/internal/pdfinput/pdf-input.h | patch | blob | history | |
src/extension/internal/pdfinput/svg-builder.h | patch | blob | history |
diff --git a/src/extension/internal/pdfinput/pdf-input.h b/src/extension/internal/pdfinput/pdf-input.h
index 6bf0f11a21b33c545f179fe66ed0848c86a9d30b..968114ef3fd0198f292bb64740ce671bb06e2515 100644 (file)
class PdfInput: public Inkscape::Extension::Implementation::Implementation {
PdfInput () { };
public:
- SPDocument *open( Inkscape::Extension::Input *mod,
+ Document *open( Inkscape::Extension::Input *mod,
const gchar *uri );
static void init( void );
diff --git a/src/extension/internal/pdfinput/svg-builder.h b/src/extension/internal/pdfinput/svg-builder.h
index 3b9192d31a80097e55d6e73a56e00b412c25edd1..1f84ffcc37ae745bda4d2c791d5de62fdbccebd4 100644 (file)
#ifdef HAVE_POPPLER
-class SPDocument;
+class Document;
namespace Inkscape {
namespace XML {
class Document;
*/
class SvgBuilder {
public:
- SvgBuilder(SPDocument *document, gchar *docname, XRef *xref);
+ SvgBuilder(Document *document, gchar *docname, XRef *xref);
SvgBuilder(SvgBuilder *parent, Inkscape::XML::Node *root);
virtual ~SvgBuilder();
std::vector<std::string> _availableFontNames; // Full names, used for matching font names (Bug LP #179589).
bool _is_top_level; // Whether this SvgBuilder is the top-level one
- SPDocument *_doc;
+ Document *_doc;
gchar *_docname; // Basename of the URI from which this document is created
XRef *_xref; // Cross-reference table from the PDF doc we're converting from
Inkscape::XML::Document *_xml_doc;