diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-19 12:04:33 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-19 13:05:12 +0200 |
commit | 76a38b85507dcf80733bcec878623d7348f53845 (patch) | |
tree | cc8b666f96312ddfe5f3a786172350c9d92f8b24 /sc/source/ui/view/drawview.cxx | |
parent | ab5c5702ba88da92649e9d8937bbd00dd9afb599 (diff) |
sal_Bool->bool
Change-Id: I1269075218632a2fe6979c85c395e267ddd80008
Diffstat (limited to 'sc/source/ui/view/drawview.cxx')
-rw-r--r-- | sc/source/ui/view/drawview.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/drawview.cxx b/sc/source/ui/view/drawview.cxx index ffca2662ebad..89d227e6dfd1 100644 --- a/sc/source/ui/view/drawview.cxx +++ b/sc/source/ui/view/drawview.cxx @@ -939,7 +939,7 @@ void ScDrawView::SyncForGrid( SdrObject* pObj ) aOldPos.X() = sc::TwipsToHMM( aOldPos.X() ); aOldPos.Y() = sc::TwipsToHMM( aOldPos.Y() ); // find position of same point on the screen ( e.g. grid ) - Point aCurPos = pViewData->GetScrPos( aOldStt.Col(), aOldStt.Row(), eWhich, sal_True ); + Point aCurPos = pViewData->GetScrPos( aOldStt.Col(), aOldStt.Row(), eWhich, true ); Point aCurPosHmm = pGridWin->PixelToLogic(aCurPos, aDrawMode ); Point aGridOff = ( aCurPosHmm - aOldPos ); // fdo#63878 Fix the X position for RTL Sheet |