| 22 | } |
| 23 | |
| 24 | Scrollbar::Ptr Scrollbar::Create( Orientation orientation ) { |
| 25 | auto ptr = Ptr( new Scrollbar( orientation ) ); |
| 26 | ptr->SetAdjustment( Adjustment::Create() ); |
| 27 | return ptr; |
| 28 | } |
| 29 | |
| 30 | Scrollbar::Ptr Scrollbar::Create( Adjustment::Ptr adjustment, Orientation orientation ) { |
| 31 | auto ptr = Ptr( new Scrollbar( orientation ) ); |
nothing calls this directly
no test coverage detected