summaryrefslogtreecommitdiffstats
path: root/src/extension/system.cpp
diff options
context:
space:
mode:
authorjohnce <johnce@users.sourceforge.net>2009-08-05 05:56:35 +0000
committerjohnce <johnce@users.sourceforge.net>2009-08-05 05:56:35 +0000
commita6fa3b454bdcef9b23e0a3107b6de6b4c6a477a0 (patch)
treea4a0672dd6486fc8b41c33ece552186d551b4c3c /src/extension/system.cpp
parentSPDocument->Document (diff)
downloadinkscape-a6fa3b454bdcef9b23e0a3107b6de6b4c6a477a0.tar.gz
inkscape-a6fa3b454bdcef9b23e0a3107b6de6b4c6a477a0.zip
SPDocument->Document
(bzr r8405)
Diffstat (limited to 'src/extension/system.cpp')
-rw-r--r--src/extension/system.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extension/system.cpp b/src/extension/system.cpp
index d7e0eebf3..ad49c3d2a 100644
--- a/src/extension/system.cpp
+++ b/src/extension/system.cpp
@@ -59,7 +59,7 @@ static Extension *build_from_reprdoc(Inkscape::XML::Document *doc, Implementatio
*
* Lastly, the open function is called in the module itself.
*/
-SPDocument *
+Document *
open(Extension *key, gchar const *filename)
{
Input *imod = NULL;
@@ -91,7 +91,7 @@ open(Extension *key, gchar const *filename)
if (!imod->prefs(filename))
return NULL;
- SPDocument *doc = imod->open(filename);
+ Document *doc = imod->open(filename);
if (!doc) {
throw Input::open_failed();
}
@@ -184,7 +184,7 @@ open_internal(Extension *in_plug, gpointer in_data)
* Lastly, the save function is called in the module itself.
*/
void
-save(Extension *key, SPDocument *doc, gchar const *filename, bool setextension, bool check_overwrite, bool official)
+save(Extension *key, Document *doc, gchar const *filename, bool setextension, bool check_overwrite, bool official)
{
Output *omod;
if (key == NULL) {