summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/tabview3.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-02-13 13:39:27 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-02-13 13:40:11 +0100
commit2b5fedb54a7f9569b817c24c1a9b16c17c09cfd9 (patch)
treeca907df222eb23917e0a3b787bbd17268d77adf1 /sc/source/ui/view/tabview3.cxx
parent75ce51026e699d74e3f5bc5f7e19e24ae3fd20ea (diff)
Remove VALIDTAB and other similar macros
Change-Id: I57e4ca031553bfeb2abfbf48a7cb024b6d8b0b5b
Diffstat (limited to 'sc/source/ui/view/tabview3.cxx')
-rw-r--r--sc/source/ui/view/tabview3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/tabview3.cxx b/sc/source/ui/view/tabview3.cxx
index c35ea9decf57..0124f6a0f795 100644
--- a/sc/source/ui/view/tabview3.cxx
+++ b/sc/source/ui/view/tabview3.cxx
@@ -1056,10 +1056,10 @@ void ScTabView::MoveCursorRel( SCsCOL nMovX, SCsROW nMovY, ScFollowMode eMode,
aViewData.ResetOldCursor();
- if (nMovX != 0 && VALIDCOLROW(nCurX,nCurY))
+ if (nMovX != 0 && ValidColRow(nCurX,nCurY))
SkipCursorHorizontal(nCurX, nCurY, nOldX, nMovX);
- if (nMovY != 0 && VALIDCOLROW(nCurX,nCurY))
+ if (nMovY != 0 && ValidColRow(nCurX,nCurY))
SkipCursorVertical(nCurX, nCurY, nOldY, nMovY);
MoveCursorAbs( nCurX, nCurY, eMode, bShift, false, true, bKeepSel );