summaryrefslogtreecommitdiff
path: root/sw/source/uibase/uiview
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-30 14:54:47 +0200
committerNoel Grandin <noel@peralex.com>2016-08-31 10:00:07 +0200
commit12b4d982c2f0dbebd2380823f3f63fe30e219f09 (patch)
treeb1b1573feffb9a7d2af5edb36549aa657d7b319e /sw/source/uibase/uiview
parentf0a563cce1c6e6f6babbe33bc3382d4ad4439754 (diff)
Get rid of a pointless indirect function pointer variable
Change-Id: I913a6be200b78790f465d2672d6da22a3b8d2b73
Diffstat (limited to 'sw/source/uibase/uiview')
-rw-r--r--sw/source/uibase/uiview/viewmdi.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/uiview/viewmdi.cxx b/sw/source/uibase/uiview/viewmdi.cxx
index 79a66146ecd5..a2d19dfccbe4 100644
--- a/sw/source/uibase/uiview/viewmdi.cxx
+++ b/sw/source/uibase/uiview/viewmdi.cxx
@@ -352,9 +352,9 @@ IMPL_LINK_TYPED( SwView, MoveNavigationHdl, void*, p, void )
case NID_REG :
rSh.EnterStdMode();
if(bNext)
- rSh.MoveRegion(fnRegionNext, fnRegionStart);
+ rSh.MoveRegion(GotoNextRegion, fnRegionStart);
else
- rSh.MoveRegion(fnRegionPrev, fnRegionStart);
+ rSh.MoveRegion(GotoPrevRegion, fnRegionStart);
break;
case NID_BKM :