--------------------------------------------------------------------------
| 631 | } |
| 632 | //-------------------------------------------------------------------------- |
| 633 | void UString::push_back(unicode_char val) |
| 634 | { |
| 635 | code_point cp[2]; |
| 636 | size_t c = _utf32_to_utf16(val, cp); |
| 637 | if (c > 0) |
| 638 | push_back(cp[0]); |
| 639 | if (c > 1) |
| 640 | push_back(cp[1]); |
| 641 | } |
| 642 | //-------------------------------------------------------------------------- |
| 643 | #if MYGUI_IS_NATIVE_WCHAR_T |
| 644 | void UString::push_back(wchar_t val) |
no outgoing calls
no test coverage detected