From: sasilver Date: Sun, 10 Aug 2008 14:44:19 +0000 (+0000) Subject: Fix for ID clash resolution: avoid finding spurious references associated with clones... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=40958379f4b92772c36d9f163a812a31c4e7497d;p=inkscape.git Fix for ID clash resolution: avoid finding spurious references associated with clones (fixes bug 256498). --- diff --git a/src/id-clash.cpp b/src/id-clash.cpp index 5980c9e7b..420b9c3e5 100644 --- a/src/id-clash.cpp +++ b/src/id-clash.cpp @@ -85,7 +85,9 @@ const char* clipboard_properties[] = { static void find_references(SPObject *elem, refmap_type *refmap) { + if (SP_OBJECT_IS_CLONED(elem)) return; Inkscape::XML::Node *repr_elem = SP_OBJECT_REPR(elem); + if (!repr_elem) return; if (repr_elem->type() != Inkscape::XML::ELEMENT_NODE) return; /* check for references in inkscape:clipboard elements */