summaryrefslogtreecommitdiff
path: root/sw/source/core/access/acctable.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-30 13:58:14 +0200
committerNoel Grandin <noel@peralex.com>2016-08-31 10:00:07 +0200
commit8c0db3e8ac158c8e131085843fcc326073e28c05 (patch)
tree43ce2bb0c9559d0ea3b3e0e1cd87b871a6595bf6 /sw/source/core/access/acctable.cxx
parentd562c4e4ead3174a9cc720835ecfbfa16e40e15d (diff)
Get rid of a pointless indirect function pointer variable
Change-Id: I81055c6973247e226dc9dc3fda072aef94fa8966
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 7551311f0b42..0402dd153d4e 100644
--- a/sw/source/core/access/acctable.cxx
+++ b/sw/source/core/access/acctable.cxx
@@ -1538,7 +1538,7 @@ void SAL_CALL SwAccessibleTable::selectAccessibleChild(
// Move cursor to the end of the table creating a selection and a table
// cursor.
pCursorShell->SetMark();
- pCursorShell->MoveTable( fnTableCurr, fnTableEnd );
+ pCursorShell->MoveTable( GotoCurrTable, fnTableEnd );
// now set the cursor into the cell again.
SwPaM *pPaM = pCursorShell->GetTableCrs() ? pCursorShell->GetTableCrs()
: pCursorShell->GetCursor();
@@ -1689,7 +1689,7 @@ void SAL_CALL SwAccessibleTable::deselectAccessibleChild(
// Move cursor to the end of the table creating a selection and a table
// cursor.
pCursorShell->SetMark();
- pCursorShell->MoveTable( fnTableCurr, fnTableEnd );
+ pCursorShell->MoveTable( GotoCurrTable, fnTableEnd );
// now set the cursor into the cell again.
pPaM = pCursorShell->GetTableCrs() ? pCursorShell->GetTableCrs()
: pCursorShell->GetCursor();