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