| 314 | } |
| 315 | |
| 316 | void FCommandBuffer::SetString(const FString &str) |
| 317 | { |
| 318 | Text.clear(); |
| 319 | auto strp = (const uint8_t*)str.GetChars(); |
| 320 | while (auto chr = GetCharFromString(strp)) Text += chr; |
| 321 | |
| 322 | CursorEnd(); |
| 323 | MakeStartPosGood(); |
| 324 | } |
| 325 | |
| 326 | void FCommandBuffer::AddYankBuffer() |
| 327 | { |
no test coverage detected