Kaydet (Commit) 0d2bf1c7 authored tarafından Oliver-Rainer Wittmann's avatar Oliver-Rainer Wittmann

#119440# - correction to be warning-free - sal_Unicode is unsigned on all…

#119440# - correction to be warning-free - sal_Unicode is unsigned on all platforms; Found by: Pavel Janik
üst 9c3ef4ee
...@@ -2585,7 +2585,7 @@ void SwWW8ImplReader::Read_SubF_Combined( _ReadFieldParams& rReadParam) ...@@ -2585,7 +2585,7 @@ void SwWW8ImplReader::Read_SubF_Combined( _ReadFieldParams& rReadParam)
for (int i = nBegin;i < nEnd-1;i++) for (int i = nBegin;i < nEnd-1;i++)
{ {
const sal_Unicode cC = sPart.GetChar(nBegin+1); const sal_Unicode cC = sPart.GetChar(nBegin+1);
if ( (-1 < cC) && (cC < 32) ) if ( cC < 32 )
{ {
nBegin++; nBegin++;
} }
......
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