| 264 | } |
| 265 | |
| 266 | void TreeViewComboBox::filterChanged(const QString& text) { |
| 267 | QModelIndex root = m_treeView->model()->index(0, 0); |
| 268 | filter(root, text); |
| 269 | } |
| 270 | |
| 271 | bool TreeViewComboBox::filter(const QModelIndex& index, const QString& text) { |
| 272 | bool childVisible = false; |