--------------------------------------------------------------------------
| 552 | |
| 553 | //-------------------------------------------------------------------------- |
| 554 | U32 GuiMLTextCtrl::getText(char* pBuffer, const U32 bufferSize) const |
| 555 | { |
| 556 | mTextBuffer.getCopy8(pBuffer, bufferSize); |
| 557 | |
| 558 | return getMin(mTextBuffer.length(), bufferSize); |
| 559 | } |
| 560 | |
| 561 | //-------------------------------------------------------------------------- |
| 562 | const char* GuiMLTextCtrl::getTextContent() |
no test coverage detected