| 154 | } |
| 155 | |
| 156 | bool isObjectTopicItem(const QTreeWidgetItem* item) { |
| 157 | return item != nullptr && !item->data(kNameColumn, kObjectTopicRole).toString().isEmpty(); |
| 158 | } |
| 159 | |
| 160 | // A value-only leaf (string field): has a Value cell but is excluded from drags. |
| 161 | bool isValueOnlyItem(const QTreeWidgetItem* item) { |
no test coverage detected