X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fextension%2Foutput.cpp;h=3f8c17fb1c51867bb739c98f6a8e6bfc615dea0d;hb=300868e9fd6365e6815d376def3229cb5d1155d0;hp=b0f254a9c07afbacd205bcb2f99f8c1fa5a8a4dc;hpb=305941d63be322f6f571a29b5845485fe6de4219;p=inkscape.git diff --git a/src/extension/output.cpp b/src/extension/output.cpp index b0f254a9c..3f8c17fb1 100644 --- a/src/extension/output.cpp +++ b/src/extension/output.cpp @@ -2,6 +2,7 @@ * Authors: * Ted Gould * + * Copyright (C) 2006 Johan Engelen * Copyright (C) 2002-2004 Authors * * Released under GNU GPL, read the file 'COPYING' for more information @@ -206,45 +207,17 @@ Output::prefs (void) only used at runtime and shouldn't be saved. One that may surprise people is the output extension. This is not saved so that the IDs could be changed, and old files will still work properly. - - After the file is saved by the implmentation the output_extension - and dataloss variables are recreated. The output_extension is set - to this extension so that future saves use this extension. Dataloss - is set so that a warning will occur on closing the document that - there may be some dataloss from this extension. */ void Output::save (SPDocument * doc, const gchar * uri) { - bool modified = false; - Inkscape::XML::Node * repr = sp_document_repr_root(doc); - - gboolean saved = sp_document_get_undo_sensitive(doc); - sp_document_set_undo_sensitive (doc, FALSE); - //repr->setAttribute("inkscape:output_extension", NULL); - repr->setAttribute("inkscape:dataloss", NULL); - if (repr->attribute("sodipodi:modified") != NULL) - modified = true; - repr->setAttribute("sodipodi:modified", NULL); - sp_document_set_undo_sensitive (doc, saved); - try { imp->save(this, doc, uri); } catch (...) { - if (modified) - repr->setAttribute("sodipodi:modified", "true"); throw; } - saved = sp_document_get_undo_sensitive(doc); - sp_document_set_undo_sensitive (doc, FALSE); - //repr->setAttribute("inkscape:output_extension", get_id()); - if (dataloss) { - repr->setAttribute("inkscape:dataloss", "true"); - } - sp_document_set_undo_sensitive (doc, saved); - return; }