| 143 | } |
| 144 | |
| 145 | Box::ChildInfo::ChildInfo( Widget::Ptr widget_, bool expand_, bool fill_ ) : |
| 146 | widget( widget_.get() ), |
| 147 | expand( expand_ ), |
| 148 | fill( fill_ ) |
| 149 | { |
| 150 | } |
| 151 | |
| 152 | bool Box::ChildInfo::operator==( const ChildInfo& rhs ) const { |
| 153 | return widget == rhs.widget; |