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