| 1968 | } |
| 1969 | |
| 1970 | void UString::_getBufferStr() const |
| 1971 | { |
| 1972 | if (m_bufferType != bt_string) |
| 1973 | { |
| 1974 | _cleanBuffer(); |
| 1975 | m_buffer.mStrBuffer = new std::string(); |
| 1976 | m_bufferType = bt_string; |
| 1977 | } |
| 1978 | m_buffer.mStrBuffer->clear(); |
| 1979 | } |
| 1980 | |
| 1981 | void UString::_getBufferWStr() const |
| 1982 | { |