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/gridwin5.cxx | |
parent | ab5c5702ba88da92649e9d8937bbd00dd9afb599 (diff) |
sal_Bool->bool
Change-Id: I1269075218632a2fe6979c85c395e267ddd80008
Diffstat (limited to 'sc/source/ui/view/gridwin5.cxx')
-rw-r--r-- | sc/source/ui/view/gridwin5.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/gridwin5.cxx b/sc/source/ui/view/gridwin5.cxx index 219fa4bf80a7..182eec707c49 100644 --- a/sc/source/ui/view/gridwin5.cxx +++ b/sc/source/ui/view/gridwin5.cxx @@ -221,7 +221,7 @@ bool ScGridWindow::ShowNoteMarker( SCsCOL nPosX, SCsROW nPosY, bool bKeyboard ) aOldPos.Y() = sc::TwipsToHMM( aOldPos.Y() ); // get screen pos in hmm for aCellPos // and equiv screen pos - Point aScreenPos = pViewData->GetScrPos( aCellPos.Col(), aCellPos.Row(), eWhich, sal_True ); + Point aScreenPos = pViewData->GetScrPos( aCellPos.Col(), aCellPos.Row(), eWhich, true ); MapMode aDrawMode = GetDrawMapMode(); Point aCurPosHmm = PixelToLogic(aScreenPos, aDrawMode ); Point aGridOff = aCurPosHmm -aOldPos; |