mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2026-07-23 19:46:34 +00:00
Codechange: Replaced SmallVector::[Begin|End]() with std alternatives
This commit is contained in:
+1
-1
@@ -674,7 +674,7 @@ public:
|
||||
|
||||
UText text = UTEXT_INITIALIZER;
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
utext_openUChars(&text, this->utf16_str.Begin(), this->utf16_str.size() - 1, &status);
|
||||
utext_openUChars(&text, this->utf16_str.data(), this->utf16_str.size() - 1, &status);
|
||||
this->char_itr->setText(&text, status);
|
||||
this->word_itr->setText(&text, status);
|
||||
this->char_itr->first();
|
||||
|
||||
Reference in New Issue
Block a user