| 839 | } |
| 840 | |
| 841 | void |
| 842 | LayerPropertiesNode::attach_view (LayoutViewBase *view, unsigned int list_index) |
| 843 | { |
| 844 | mp_view.reset (view); |
| 845 | m_list_index = list_index; |
| 846 | |
| 847 | for (iterator c = m_children.begin (); c != m_children.end (); ++c) { |
| 848 | c->attach_view (view, list_index); |
| 849 | } |
| 850 | // Attachment of a view is a strong indication that something significant changed - |
| 851 | // recompute the source specifications on next request. |
| 852 | m_realize_needed_source = true; |
| 853 | } |
| 854 | |
| 855 | LayerPropertiesNode & |
| 856 | LayerPropertiesNode::insert_child (const iterator &iter, const LayerPropertiesNode &child) |
no test coverage detected