diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-06 08:59:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-06 07:47:30 +0000 |
commit | 7662e92c64ec194a2089f633a363d9dc45a4aa9d (patch) | |
tree | 1086154f31c0c9c6386b44ab83bd382f5308df8c /basctl | |
parent | 823a8f3117a8be1de92168226f561ed804db3e93 (diff) |
loplugin:redundantcast find cstyle double casts
Change-Id: I5507be190dac781e5cdb545a60acf3d50056c9f8
Reviewed-on: https://gerrit.libreoffice.org/36187
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/dlged/dlged.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/basctl/source/dlged/dlged.cxx b/basctl/source/dlged/dlged.cxx index 01fe64219c1f..bb8ddeff03a8 100644 --- a/basctl/source/dlged/dlged.cxx +++ b/basctl/source/dlged/dlged.cxx @@ -1174,13 +1174,13 @@ void DlgEditor::Print( Printer* pPrinter, const OUString& rTitle ) // not wor Size aOutputSz; if( nBmpSzHeight * nScaleX <= nPaperSzHeight ) { - aOutputSz.Width() = (long)(((double)nBmpSzWidth) * nScaleX); - aOutputSz.Height() = (long)(((double)nBmpSzHeight) * nScaleX); + aOutputSz.Width() = (long)(nBmpSzWidth * nScaleX); + aOutputSz.Height() = (long)(nBmpSzHeight * nScaleX); } else { - aOutputSz.Width() = (long)(((double)nBmpSzWidth) * nScaleY); - aOutputSz.Height() = (long)(((double)nBmpSzHeight) * nScaleY); + aOutputSz.Width() = (long)(nBmpSzWidth * nScaleY); + aOutputSz.Height() = (long)(nBmpSzHeight * nScaleY); } Point aPosOffs( |