summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/rtfexportfilter.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/filter/ww8/rtfexportfilter.cxx
parentbdd60f1f5e0b995572321fd0865ccb8849d8ed76 (diff)
Get rid of pointless indirect function pointer variables
Change-Id: Ic8eddec51d59b531ae22421b796a148267b9f3c1
Diffstat (limited to 'sw/source/filter/ww8/rtfexportfilter.cxx')
-rw-r--r--sw/source/filter/ww8/rtfexportfilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/rtfexportfilter.cxx b/sw/source/filter/ww8/rtfexportfilter.cxx
index 26236dec21e8..34bdd46ed466 100644
--- a/sw/source/filter/ww8/rtfexportfilter.cxx
+++ b/sw/source/filter/ww8/rtfexportfilter.cxx
@@ -70,7 +70,7 @@ sal_Bool RtfExportFilter::filter(const uno::Sequence< beans::PropertyValue >& aD
// we get SwPaM for the entire document; copy&paste is handled internally, not via UNO
SwPaM aPam(pDoc->GetNodes().GetEndOfContent());
aPam.SetMark();
- aPam.Move(fnMoveBackward, fnGoDoc);
+ aPam.Move(fnMoveBackward, GoInDoc);
auto pCurPam = o3tl::make_unique<SwPaM>(*aPam.End(), *aPam.Start());