summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/excform8.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-06 18:31:44 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-06 18:31:44 +0200
commit93c0b1f5dafa1c9d01c804f350129dde047bb8dc (patch)
tree861bc6da163d72fedcf690c0029be980d4b76f06 /sc/source/filter/excel/excform8.cxx
parentee3e23842e7bb0bfe23b6f070b0677dd3d70fd92 (diff)
Improved loplugin:redundantcast, static_cast on arithmetic types: sc
Change-Id: Id56d3e3d7c4485e24dc8fe6349631837101e86fe
Diffstat (limited to 'sc/source/filter/excel/excform8.cxx')
-rw-r--r--sc/source/filter/excel/excform8.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/excform8.cxx b/sc/source/filter/excel/excform8.cxx
index 469a576c4130..f8fbf68ce02f 100644
--- a/sc/source/filter/excel/excform8.cxx
+++ b/sc/source/filter/excel/excform8.cxx
@@ -1463,7 +1463,7 @@ void ExcelToSc8::ExcRelToScRel8( sal_uInt16 nRow, sal_uInt16 nC, ScSingleRefData
// relative column references wrap around
nRelCol = static_cast<sal_Int16>(256 + (int)nRelCol);
}
- rSRD.SetRelCol(static_cast<SCCOL>(nRelCol));
+ rSRD.SetRelCol(nRelCol);
}
else
rSRD.SetAbsCol(static_cast<SCCOL>(nCol));