--------------------------------------------------------------------------
| 1027 | |
| 1028 | //-------------------------------------------------------------------------- |
| 1029 | void GuiMLTextCtrl::scrollToTop() |
| 1030 | { |
| 1031 | // If the parent control is not a GuiScrollContentCtrl, then this call is invalid: |
| 1032 | GuiScrollCtrl *pappy = dynamic_cast<GuiScrollCtrl*>(getParent()); |
| 1033 | if ( !pappy ) |
| 1034 | return; |
| 1035 | pappy->scrollRectVisible(RectI(0,0,0,0)); |
| 1036 | } |
| 1037 | |
| 1038 | //-------------------------------------------------------------------------- |
| 1039 | void GuiMLTextCtrl::scrollToBottom() |
no test coverage detected