| 86 | } |
| 87 | |
| 88 | void DataListUI::updateListData() |
| 89 | { |
| 90 | mListBox->removeAllItems(); |
| 91 | |
| 92 | const tools::Data::VectorData& childs = tools::DataManager::getInstance().getRoot()->getChilds(); |
| 93 | for (tools::Data::VectorData::const_iterator child = childs.begin(); child != childs.end(); child++) |
| 94 | { |
| 95 | tools::Data* data = *(child); |
| 96 | mListBox->addItem((*child)->getPropertyValue("Name"), data); |
| 97 | } |
| 98 | } |
| 99 | } |
nothing calls this directly
no test coverage detected