| 1154 | } |
| 1155 | |
| 1156 | QList<UBDocumentTreeNode*> UBDocumentTreeModel::nodeChildrenFromIndex(const QModelIndex &pIndex) const |
| 1157 | { |
| 1158 | UBDocumentTreeNode *node = nodeFromIndex(pIndex); |
| 1159 | |
| 1160 | if (node) |
| 1161 | return node->children(); |
| 1162 | else |
| 1163 | return QList<UBDocumentTreeNode*>(); |
| 1164 | } |
| 1165 | |
| 1166 | QStringList UBDocumentTreeModel::nodeNameList(const QModelIndex &pIndex, bool distinctNodeType) const |
| 1167 | { |