| 147 | } |
| 148 | |
| 149 | QString curveNameForItem(const QTreeWidgetItem* item) { |
| 150 | if (item == nullptr) { |
| 151 | return {}; |
| 152 | } |
| 153 | return item->data(kNameColumn, Qt::UserRole).toString(); |
| 154 | } |
| 155 | |
| 156 | bool isObjectTopicItem(const QTreeWidgetItem* item) { |
| 157 | return item != nullptr && !item->data(kNameColumn, kObjectTopicRole).toString().isEmpty(); |
no test coverage detected