diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-06-29 15:51:05 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-06-29 17:24:44 +0200 |
commit | 742e38eae70eeb4e5f9c38305314e302f5bac979 (patch) | |
tree | b920e7eac769c8d00c507c3420e574815b200129 /basic | |
parent | e6c43ed9e6bb41b64bcc8105ad006c999deebcd7 (diff) |
Improved loplugin:redundantcast (const-qualified typedefs): basic
Change-Id: Ie22fe58dc2c2cc3867bd800f757433b68e0f2448
Reviewed-on: https://gerrit.libreoffice.org/56693
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/sbx/sbxbyte.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxint.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/sbx/sbxbyte.cxx b/basic/source/sbx/sbxbyte.cxx index e125dd023ffc..df85f5f7f1e0 100644 --- a/basic/source/sbx/sbxbyte.cxx +++ b/basic/source/sbx/sbxbyte.cxx @@ -45,7 +45,7 @@ start: nRes = static_cast<sal_uInt8>(p->nChar); break; case SbxBYTE: - nRes = static_cast<sal_uInt8>(p->nByte); break; + nRes = p->nByte; break; case SbxINTEGER: case SbxBOOL: if( p->nInteger > SbxMAXBYTE ) diff --git a/basic/source/sbx/sbxint.cxx b/basic/source/sbx/sbxint.cxx index 3109f424164c..7f16ef7e0013 100644 --- a/basic/source/sbx/sbxint.cxx +++ b/basic/source/sbx/sbxint.cxx @@ -86,7 +86,7 @@ start: break; case SbxCURRENCY: { - sal_Int64 tstVal = static_cast<sal_Int64>(p->nInt64) / sal_Int64(CURRENCY_FACTOR); + sal_Int64 tstVal = p->nInt64 / sal_Int64(CURRENCY_FACTOR); if( tstVal > SbxMAXINT ) { |