summaryrefslogtreecommitdiff
path: root/sw/source/core/access/acctable.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-08-29 12:52:04 +0300
committerTor Lillqvist <tml@collabora.com>2016-08-29 14:45:32 +0300
commit6f9750ef54f7e0f2c1345b39dcf45bdf589630d8 (patch)
treebad8db239238254daa1a6107dccae1245dfea172 /sw/source/core/access/acctable.cxx
parentbdd60f1f5e0b995572321fd0865ccb8849d8ed76 (diff)
Get rid of pointless indirect function pointer variables
Change-Id: Ic8eddec51d59b531ae22421b796a148267b9f3c1
Diffstat (limited to 'sw/source/core/access/acctable.cxx')
-rw-r--r--sw/source/core/access/acctable.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/access/acctable.cxx b/sw/source/core/access/acctable.cxx
index 8172657d0eff..7551311f0b42 100644
--- a/sw/source/core/access/acctable.cxx
+++ b/sw/source/core/access/acctable.cxx
@@ -1533,7 +1533,7 @@ void SAL_CALL SwAccessibleTable::selectAccessibleChild(
pCursorShell->StartAction();
// Set cursor into current cell. This deletes any table cursor.
SwPaM aPaM( *pStartNode );
- aPaM.Move( fnMoveForward, fnGoNode );
+ aPaM.Move( fnMoveForward, GoInNode );
Select( aPaM );
// Move cursor to the end of the table creating a selection and a table
// cursor.
@@ -1552,7 +1552,7 @@ void SAL_CALL SwAccessibleTable::selectAccessibleChild(
// expand the current selection (i.e., set
// point to new position; keep mark)
SwPaM aPaM( *pStartNode );
- aPaM.Move( fnMoveForward, fnGoNode );
+ aPaM.Move( fnMoveForward, GoInNode );
aPaM.SetMark();
const SwPaM *pPaM = pCursorShell->GetTableCrs() ? pCursorShell->GetTableCrs()
: pCursorShell->GetCursor();