From: speleo3 Date: Thu, 30 Apr 2009 08:36:59 +0000 (+0000) Subject: requestOrphanCollection: do not remove (vacuum) style or script elements (Bug #276244) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5636d85352f341e05629c369f023eeb1a1457cd8;p=inkscape.git requestOrphanCollection: do not remove (vacuum) style or script elements (Bug #276244) --- diff --git a/src/sp-object.cpp b/src/sp-object.cpp index 1e7c5f2fe..9037d45a9 100644 --- a/src/sp-object.cpp +++ b/src/sp-object.cpp @@ -42,6 +42,8 @@ #include "style.h" #include "sp-object-repr.h" #include "sp-root.h" +#include "sp-style-elem.h" +#include "sp-script.h" #include "streq.h" #include "strneq.h" #include "xml/repr.h" @@ -505,6 +507,13 @@ SPObject::setLabel(gchar const *label) { void SPObject::requestOrphanCollection() { g_return_if_fail(document != NULL); + + // do not remove style or script elements (Bug #276244) + if (SP_IS_STYLE_ELEM(this)) + return; + if (SP_IS_SCRIPT(this)) + return; + document->queueForOrphanCollection(this); /** \todo