summaryrefslogtreecommitdiffstats
path: root/src/document.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2009-06-09 08:41:43 +0000
committerjoncruz <joncruz@users.sourceforge.net>2009-06-09 08:41:43 +0000
commit2597a73d85f8416072e2d95c4813662b2f0cd503 (patch)
tree17f75c442ddfa9ab159754705d967d2ef449ea8b /src/document.cpp
parentCorrect handling of version and set to 1.1 for default. Fixes bug #168180. (diff)
downloadinkscape-2597a73d85f8416072e2d95c4813662b2f0cd503.tar.gz
inkscape-2597a73d85f8416072e2d95c4813662b2f0cd503.zip
Removed sodipodi:version
(bzr r8029)
Diffstat (limited to 'src/document.cpp')
-rw-r--r--src/document.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/document.cpp b/src/document.cpp
index 7c43b475c..288e52c6d 100644
--- a/src/document.cpp
+++ b/src/document.cpp
@@ -263,7 +263,6 @@ sp_document_create(Inkscape::XML::Document *rdoc,
{
SPDocument *document;
Inkscape::XML::Node *rroot;
- Inkscape::Version sodipodi_version;
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
rroot = rdoc->root();
@@ -293,10 +292,7 @@ sp_document_create(Inkscape::XML::Document *rdoc,
document->root = sp_object_repr_build_tree(document, rroot);
- sodipodi_version = SP_ROOT(document->root)->version.sodipodi;
-
/* fixme: Not sure about this, but lets assume ::build updates */
- rroot->setAttribute("sodipodi:version", SODIPODI_VERSION);
rroot->setAttribute("inkscape:version", Inkscape::version_string);
/* fixme: Again, I moved these here to allow version determining in ::build (Lauris) */
@@ -313,7 +309,7 @@ sp_document_create(Inkscape::XML::Document *rdoc,
/* Eliminate obsolete sodipodi:docbase, for privacy reasons */
rroot->setAttribute("sodipodi:docbase", NULL);
-
+
/* Eliminate any claim to adhere to a profile, as we don't try to */
rroot->setAttribute("baseProfile", NULL);
@@ -321,7 +317,7 @@ sp_document_create(Inkscape::XML::Document *rdoc,
if (!sp_item_group_get_child_by_name((SPGroup *) document->root, NULL, "sodipodi:namedview")) {
// if there's none in the document already,
Inkscape::XML::Node *rnew = NULL;
-
+
rnew = rdoc->createElement("sodipodi:namedview");
//rnew->setAttribute("id", "base");
@@ -351,7 +347,7 @@ sp_document_create(Inkscape::XML::Document *rdoc,
prefs->getInt("/template/base/inkscape:window-width", 640));
sp_repr_set_int(rnew, "inkscape:window-height",
prefs->getInt("/template/base/inkscape:window-height", 480));
-
+
// insert into the document
rroot->addChild(rnew, NULL);
// clean up
@@ -672,7 +668,7 @@ void sp_document_set_uri(SPDocument *document, gchar const *filename)
do_change_uri(document, filename, false);
}
-
+
/**
* Changes the base, name and uri members of \a document, and updates any
* relative hrefs in the document to be relative to the new base.