Searched defs:text_in_span (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/
H A Dtext-editing.cpp1467 Inkscape::XML::Node *text_in_span = xml_doc->createTextNode(string_item->string.substr(start_char_index, end_char_index - start_char_index).c_str()); local
1468 child_span->appendChild(text_in_span);
1469 Inkscape::GC::release(text_in_span);
1478 Inkscape::XML::Node *text_in_span = xml_doc->createTextNode(string_item->string.substr(0, end_char_index).c_str()); local
1479 child_span->appendChild(text_in_span);
1480 Inkscape::GC::release(text_in_span);
1490 Inkscape::XML::Node *text_in_span = xml_doc->createTextNode(string_item->string.substr(start_char_index).c_str()); local
1491 child_span->appendChild(text_in_span);
1492 Inkscape::GC::release(text_in_span);

Completed in 23 milliseconds