diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-06-29 15:55:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-06-29 21:07:24 +0200 |
commit | e73b10845e98f8423dc32c9d27840aba76dbcbcc (patch) | |
tree | f9c071d138d67d3f4782a14335e14d02a2b57332 /starmath | |
parent | 9402ef2c1dbf207eaee0d4014f37f586aec2f6f8 (diff) |
Improved loplugin:redundantcast (const-qualified typedefs): starmath
Change-Id: If013783e8a07fa7d8a613d11e5719a064e717852
Reviewed-on: https://gerrit.libreoffice.org/56702
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/cfgitem.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/starmath/source/cfgitem.cxx b/starmath/source/cfgitem.cxx index 883f6f6d120b..950c6ca23ce9 100644 --- a/starmath/source/cfgitem.cxx +++ b/starmath/source/cfgitem.cxx @@ -687,27 +687,27 @@ void SmMathConfig::SaveFontFormatList() // CharSet pVal->Name = aNodeNameDelim; pVal->Name += *pName++; - pVal->Value <<= static_cast<sal_Int16>(aFntFmt.nCharSet); // 6.0 file-format GetSOStoreTextEncoding not needed + pVal->Value <<= aFntFmt.nCharSet; // 6.0 file-format GetSOStoreTextEncoding not needed pVal++; // Family pVal->Name = aNodeNameDelim; pVal->Name += *pName++; - pVal->Value <<= static_cast<sal_Int16>(aFntFmt.nFamily); + pVal->Value <<= aFntFmt.nFamily; pVal++; // Pitch pVal->Name = aNodeNameDelim; pVal->Name += *pName++; - pVal->Value <<= static_cast<sal_Int16>(aFntFmt.nPitch); + pVal->Value <<= aFntFmt.nPitch; pVal++; // Weight pVal->Name = aNodeNameDelim; pVal->Name += *pName++; - pVal->Value <<= static_cast<sal_Int16>(aFntFmt.nWeight); + pVal->Value <<= aFntFmt.nWeight; pVal++; // Italic pVal->Name = aNodeNameDelim; pVal->Name += *pName++; - pVal->Value <<= static_cast<sal_Int16>(aFntFmt.nItalic); + pVal->Value <<= aFntFmt.nItalic; pVal++; } OSL_ENSURE( sal::static_int_cast<size_t>(pVal - pValues) == nCount * nSymbolProps, "properties missing" ); |