| QByteArray Rpp::visitGetText | ( | Item * | item | ) |
Definition at line 685 of file rpp.cpp.
References TokenEngine::TokenSection::fullText(), i, Rpp::Item::text(), and Rpp::Item::toItemComposite().
00686 { 00687 QByteArray text; 00688 00689 text += item->text().fullText(); 00690 00691 if(item->toItemComposite()) { 00692 ItemComposite *composite = item->toItemComposite(); 00693 for (int i=0; i <composite->count(); ++i) 00694 text += visitGetText(composite->item(i)); 00695 } 00696 00697 return text; 00698 }
Here is the call graph for this function:

1.5.1