summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/gridwin4.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/view/gridwin4.cxx')
-rw-r--r--sc/source/ui/view/gridwin4.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx
index 9387c1e6d79c..5bfda7ea5915 100644
--- a/sc/source/ui/view/gridwin4.cxx
+++ b/sc/source/ui/view/gridwin4.cxx
@@ -97,8 +97,8 @@ static void lcl_DrawOneFrame( vcl::RenderContext* pDev, const tools::Rectangle&
lcl_LimitRect( aInner, aVisible );
tools::Rectangle aOuter = aInner;
- long nHor = (long) ( SC_SCENARIO_HSPACE * nPPTX );
- long nVer = (long) ( SC_SCENARIO_VSPACE * nPPTY );
+ long nHor = static_cast<long>( SC_SCENARIO_HSPACE * nPPTX );
+ long nVer = static_cast<long>( SC_SCENARIO_VSPACE * nPPTY );
aOuter.Left() -= nHor;
aOuter.Right() += nHor;
aOuter.Top() -= nVer;
@@ -842,7 +842,7 @@ void ScGridWindow::DrawContent(OutputDevice &rDevice, const ScTableInfo& rTableI
if ( pRangeFinder && !pRangeFinder->IsHidden() &&
pRangeFinder->GetDocName() == pDocSh->GetTitle() )
{
- sal_uInt16 nCount = (sal_uInt16)pRangeFinder->Count();
+ sal_uInt16 nCount = static_cast<sal_uInt16>(pRangeFinder->Count());
for (sal_uInt16 i=0; i<nCount; i++)
{
ScRangeFindData& rData = pRangeFinder->GetObject(i);
@@ -1461,9 +1461,9 @@ void ScGridWindow::DrawPagePreview( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2,
long nPageNo = rData.GetFirstPage();
if ( rData.IsTopDown() )
- nPageNo += ((long)nColPos)*nRowBreaks+nRowPos;
+ nPageNo += static_cast<long>(nColPos)*nRowBreaks+nRowPos;
else
- nPageNo += ((long)nRowPos)*nColBreaks+nColPos;
+ nPageNo += static_cast<long>(nRowPos)*nColBreaks+nColPos;
OUString aThisPageStr = aPageStr.replaceFirst("%1", OUString::number(nPageNo));