summaryrefslogtreecommitdiffstats
path: root/src/sp-object.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2017-01-24 08:41:37 +0000
committerjabiertxof <info@marker.es>2017-01-24 08:41:37 +0000
commit2db253e38b7ac8f00ca607ff1d69e15b61301389 (patch)
tree3177b769003d4fba36f20364720ab7cd8e3a4db3 /src/sp-object.cpp
parentfix nodes reverting back during editing (diff)
parentBug fixes (diff)
downloadinkscape-2db253e38b7ac8f00ca607ff1d69e15b61301389.tar.gz
inkscape-2db253e38b7ac8f00ca607ff1d69e15b61301389.zip
merge lp:~inkscape.dev/inkscape/rotatecopies_improvements
(bzr r15436)
Diffstat (limited to 'src/sp-object.cpp')
-rw-r--r--src/sp-object.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/sp-object.cpp b/src/sp-object.cpp
index 75f4657ef..0dc301c49 100644
--- a/src/sp-object.cpp
+++ b/src/sp-object.cpp
@@ -775,6 +775,21 @@ void SPObject::appendChild(Inkscape::XML::Node *child) {
repr->appendChild(child);
}
+SPObject* SPObject::nthChild(unsigned index) {
+ g_assert(this->repr);
+ if (hasChildren()) {
+ std::vector<SPObject*> l;
+ unsigned counter = 0;
+ for (auto& child: children) {
+ if (counter == index) {
+ return &child;
+ }
+ counter++;
+ }
+ }
+ return NULL;
+}
+
void SPObject::addChild(Inkscape::XML::Node *child, Inkscape::XML::Node * prev)
{
g_assert(this->repr);