Code

SPDocument->Document
authorjohnce <johnce@users.sourceforge.net>
Wed, 5 Aug 2009 06:39:04 +0000 (06:39 +0000)
committerjohnce <johnce@users.sourceforge.net>
Wed, 5 Aug 2009 06:39:04 +0000 (06:39 +0000)
src/extension/internal/pdfinput/pdf-input.h
src/extension/internal/pdfinput/svg-builder.h

index 6bf0f11a21b33c545f179fe66ed0848c86a9d30b..968114ef3fd0198f292bb64740ce671bb06e2515 100644 (file)
@@ -113,7 +113,7 @@ private:
 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 );
 
index 3b9192d31a80097e55d6e73a56e00b412c25edd1..1f84ffcc37ae745bda4d2c791d5de62fdbccebd4 100644 (file)
@@ -18,7 +18,7 @@
 
 #ifdef HAVE_POPPLER
 
-class SPDocument;
+class Document;
 namespace Inkscape {
     namespace XML {
         class Document;
@@ -95,7 +95,7 @@ struct SvgGlyph {
  */
 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();
 
@@ -220,7 +220,7 @@ private:
     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;