Lines Matching refs:copy
698 Inkscape::XML::Node *copy = NULL;
700 if (dynamic_cast<SPSymbol *>(orig)) { // make a group, copy children
701 copy = xml_doc->createElement("svg:g");
705 copy->appendChild(newchild);
707 } else { // just copy
708 copy = orig->getRepr()->duplicate(xml_doc);
712 parent->addChild(copy, repr);
715 SPObject *unlinked = document->getObjectByRepr(copy);
730 // Give the copy our old id and let go of our old repr.
731 copy->setAttribute("id", repr->attribute("id"));
735 copy->setAttribute("inkscape:tiled-clone-of", NULL);
736 copy->setAttribute("inkscape:tile-w", NULL);
737 copy->setAttribute("inkscape:tile-h", NULL);
738 copy->setAttribute("inkscape:tile-cx", NULL);
739 copy->setAttribute("inkscape:tile-cy", NULL);