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