SceneDockWidget keys layers by ObjectTopicId; LayerListView keys rows by an opaque qint64. The dock's topic id IS that opaque key.
| 18 | // SceneDockWidget keys layers by ObjectTopicId; LayerListView keys rows by an |
| 19 | // opaque qint64. The dock's topic id IS that opaque key. |
| 20 | [[nodiscard]] ObjectTopicId toTopicId(qint64 id) { |
| 21 | ObjectTopicId tid; |
| 22 | tid.id = static_cast<uint32_t>(id); |
| 23 | return tid; |
| 24 | } |
| 25 | } // namespace |
| 26 | |
| 27 | Scene2DConfigPanel::Scene2DConfigPanel(QWidget* parent) : QWidget(parent) { |
no outgoing calls
no test coverage detected