| 5073 | } |
| 5074 | |
| 5075 | void |
| 5076 | LayoutViewBase::set_active_cellview_index (int index) |
| 5077 | { |
| 5078 | if (index >= 0 && index < int (cellviews ())) { |
| 5079 | if (m_active_cellview_index != index) { |
| 5080 | m_active_cellview_index = index; |
| 5081 | active_cellview_changed (index); |
| 5082 | } |
| 5083 | } else { |
| 5084 | m_active_cellview_index = -1; |
| 5085 | } |
| 5086 | } |
| 5087 | |
| 5088 | void |
| 5089 | LayoutViewBase::selected_cells_paths (int /*cv_index*/, std::vector<cell_path_type> & /*paths*/) const |
nothing calls this directly
no test coverage detected