summaryrefslogtreecommitdiff
path: root/sw/source/uibase/uiview/viewtab.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/uiview/viewtab.cxx')
-rw-r--r--sw/source/uibase/uiview/viewtab.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/uiview/viewtab.cxx b/sw/source/uibase/uiview/viewtab.cxx
index 563d29fab1f5..3f33b3f404fa 100644
--- a/sw/source/uibase/uiview/viewtab.cxx
+++ b/sw/source/uibase/uiview/viewtab.cxx
@@ -808,7 +808,7 @@ void SwView::ExecTabWin( SfxRequest const & rReq )
if( pColl && pColl->IsAutoUpdateFormat())
{
SfxItemSetFixed<RES_PARATR_TABSTOP, RES_PARATR_TABSTOP> aSetTmp(GetPool());
- aSetTmp.Put(*aTabStops);
+ aSetTmp.Put(std::move(aTabStops));
rSh.AutoUpdatePara( pColl, aSetTmp );
}
else