diff options
author | David Tardon <dtardon@redhat.com> | 2011-03-29 17:17:59 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-03-29 17:17:59 +0200 |
commit | 3387fc373bf522f3a963706fe21c0265ef4480c7 (patch) | |
tree | d5326f72ea6a25e752824a385f4fc2ae5e8ea372 /starmath | |
parent | d57506488873544a28e633b1386da66d09ccdca5 (diff) |
WaE: comparison between signed and unsigned integer expr.
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/cfgitem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/cfgitem.cxx b/starmath/source/cfgitem.cxx index 89c42aa68731..cbbfa6d64761 100644 --- a/starmath/source/cfgitem.cxx +++ b/starmath/source/cfgitem.cxx @@ -816,7 +816,7 @@ void SmMathConfig::SaveFontFormatList() pVal->Value <<= (sal_Int16) aFntFmt.nItalic; 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 ); rFntFmtList.SetModified( false ); |