| 339 | } |
| 340 | |
| 341 | Notebook::ChildLabelPair::ChildLabelPair( Widget::Ptr child_, Widget::Ptr tab_label_ ) : |
| 342 | child( child_ ), |
| 343 | tab_label( tab_label_ ) |
| 344 | { |
| 345 | } |
| 346 | |
| 347 | bool Notebook::ChildLabelPair::operator==( const ChildLabelPair& rhs ) const { |
| 348 | return child == rhs.child; |
nothing calls this directly
no outgoing calls
no test coverage detected