From 5636d85352f341e05629c369f023eeb1a1457cd8 Mon Sep 17 00:00:00 2001 From: speleo3 Date: Thu, 30 Apr 2009 08:36:59 +0000 Subject: [PATCH] requestOrphanCollection: do not remove (vacuum) style or script elements (Bug #276244) --- src/sp-object.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) 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 -- 2.30.2