Searched refs:junior (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/
H A Dobject-hierarchy.cpp58 void ObjectHierarchy::_addTop(SPObject *senior, SPObject *junior) { argument
59 assert(junior != NULL);
62 SPObject *object = junior->parent;
130 void ObjectHierarchy::_addBottom(SPObject *senior, SPObject *junior) { argument
131 assert(junior != NULL);
134 if ( junior != senior ) {
135 _addBottom(senior, junior->parent);
136 _addBottom(junior);
H A Dobject-hierarchy.h97 * Add hierarchy from junior's parent to senior to this
100 void _addTop(SPObject *senior, SPObject *junior);
114 * Add hierarchy from senior to junior, in range (senior, junior], to this hierarchy's bottom.
116 void _addBottom(SPObject *senior, SPObject *junior);

Completed in 418 milliseconds