Kaydet (Commit) 31d322aa authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: rewrite call of rtl::OUString::operator= with empty string constant ...

... argument as call of rtl::OUString::clear.

Change-Id: I3877a7034edc2cff0509c8a57170228fa1c68685
üst c8e23bb3
...@@ -114,7 +114,7 @@ void PaletteASE::LoadPalette() ...@@ -114,7 +114,7 @@ void PaletteASE::LoadPalette()
maName = aName; maName = aName;
// Is there color data? (shouldn't happen in a start block, but check anyway) // Is there color data? (shouldn't happen in a start block, but check anyway)
if (nChunkSize > ((nChars * 2) + 2)) if (nChunkSize > ((nChars * 2) + 2))
aName = ""; aName.clear();
else else
continue; continue;
} }
......
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