Kaydet (Commit) 3387fc37 authored tarafından David Tardon's avatar David Tardon

WaE: comparison between signed and unsigned integer expr.

üst d5750648
...@@ -816,7 +816,7 @@ void SmMathConfig::SaveFontFormatList() ...@@ -816,7 +816,7 @@ void SmMathConfig::SaveFontFormatList()
pVal->Value <<= (sal_Int16) aFntFmt.nItalic; pVal->Value <<= (sal_Int16) aFntFmt.nItalic;
pVal++; pVal++;
} }
OSL_ENSURE( pVal - pValues == nCount * nSymbolProps, "properties missing" ); OSL_ENSURE( sal::static_int_cast<size_t>(pVal - pValues) == nCount * nSymbolProps, "properties missing" );
ReplaceSetProperties( A2OU( FONT_FORMAT_LIST ) , aValues ); ReplaceSetProperties( A2OU( FONT_FORMAT_LIST ) , aValues );
rFntFmtList.SetModified( false ); rFntFmtList.SetModified( false );
......
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