| 110 | } |
| 111 | |
| 112 | Notebook::IndexType Notebook::PrependPage( Widget::Ptr child, Widget::Ptr tab_label ) { |
| 113 | return InsertPage( child, tab_label, 0 ); |
| 114 | } |
| 115 | |
| 116 | Notebook::IndexType Notebook::InsertPage( Widget::Ptr child, Widget::Ptr tab_label, IndexType position ) { |
| 117 | if( ( position >= GetPageCount() ) || ( position < 0 ) ) { |
nothing calls this directly
no outgoing calls
no test coverage detected