--------------------------------------------------------------------------
| 560 | |
| 561 | //-------------------------------------------------------------------------- |
| 562 | const char* GuiMLTextCtrl::getTextContent() |
| 563 | { |
| 564 | if ( mTextBuffer.length() > 0 ) |
| 565 | { |
| 566 | UTF8* returnString = Con::getReturnBuffer( mTextBuffer.getUTF8BufferSizeEstimate() ); |
| 567 | mTextBuffer.getCopy8(returnString, mTextBuffer.getUTF8BufferSizeEstimate() ); |
| 568 | return returnString; |
| 569 | } |
| 570 | |
| 571 | return( "" ); |
| 572 | } |
| 573 | |
| 574 | //-------------------------------------------------------------------------- |
| 575 | const char *GuiMLTextCtrl::getScriptValue() |
no test coverage detected