Kaydet (Commit) 974567cd authored tarafından Caolán McNamara's avatar Caolán McNamara

WaE: int/char mix

üst 06158bf0
......@@ -83,7 +83,7 @@ namespace
//Taking the single byte legacy encodings, fill in all possible values
std::vector<sal_Char> aAllChars(255);
for (int i = 1; i <= 255; ++i)
aAllChars[i-1] = i;
aAllChars[i-1] = static_cast<sal_Char>(i);
//Some slots are unused, so don't map to private, just set them to 'X'
sal_uInt32 convertFlags = OUSTRING_TO_OSTRING_CVTFLAGS ^ RTL_TEXTTOUNICODE_FLAGS_UNDEFINED_MAPTOPRIVATE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment