diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-12 20:14:44 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-12 20:14:44 +0100 |
commit | dead6b3a944d0100ef833bb5d7f92bcd2563ada4 (patch) | |
tree | 3353ff138015cf48c38db8abaa9bc3478271b2cd /svl/qa/unit/svl.cxx | |
parent | 43b137e1404acbd16649813e9d493ba97b8f509c (diff) |
More loplugin:cstylecast: svl
auto-rewrite with <https://gerrit.libreoffice.org/#/c/47798/> "Enable
loplugin:cstylecast for some more cases" plus
solenv/clang-format/reformat-formatted-files
Change-Id: I71e3b2c9b4c68183288f43999d242e95ae13584d
Diffstat (limited to 'svl/qa/unit/svl.cxx')
-rw-r--r-- | svl/qa/unit/svl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/qa/unit/svl.cxx b/svl/qa/unit/svl.cxx index 74e37de42d6e..3c5cc3af7532 100644 --- a/svl/qa/unit/svl.cxx +++ b/svl/qa/unit/svl.cxx @@ -412,7 +412,7 @@ void Test::checkPreviewString(SvNumberFormatter& aFormatter, aMessage += "\", "; aMessage += rtl::OString::number( fPreviewNumber ); aMessage += ", sStr, ppColor, "; - aMessage += rtl::OString::number( (sal_uInt16)eLang ); + aMessage += rtl::OString::number( static_cast<sal_uInt16>(eLang) ); aMessage += " ) failed"; CPPUNIT_FAIL( aMessage.getStr() ); } |