diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/fmcomp/fmgridif.cxx | 2 | ||||
-rw-r--r-- | svx/source/form/fmshimp.cxx | 4 | ||||
-rw-r--r-- | svx/source/table/svdotable.cxx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/fmcomp/fmgridif.cxx b/svx/source/fmcomp/fmgridif.cxx index 5c9b79f50a75..b3fe21c0cc0f 100644 --- a/svx/source/fmcomp/fmgridif.cxx +++ b/svx/source/fmcomp/fmgridif.cxx @@ -2529,7 +2529,7 @@ void FmXGridPeer::releaseDispatchProviderInterceptor(const Reference< css::frame } } - xChainWalk = xSlave; + xChainWalk = std::move(xSlave); } // our interceptor chain has changed and we're alive ? if (!isDesignMode()) diff --git a/svx/source/form/fmshimp.cxx b/svx/source/form/fmshimp.cxx index 1b91ac1585bd..dca4a634ceee 100644 --- a/svx/source/form/fmshimp.cxx +++ b/svx/source/form/fmshimp.cxx @@ -2072,7 +2072,7 @@ void FmXFormShell::startListening_Lock() break; } } - m_xNavigationController = xParent; + m_xNavigationController = std::move(xParent); } break; @@ -2522,7 +2522,7 @@ void FmXFormShell::UpdateForms_Lock(bool _bInvalidate) if ( m_xForms != xForms ) { RemoveElement_Lock( m_xForms ); - m_xForms = xForms; + m_xForms = std::move(xForms); AddElement_Lock(m_xForms); } diff --git a/svx/source/table/svdotable.cxx b/svx/source/table/svdotable.cxx index 610cfcc748de..b300c4284c38 100644 --- a/svx/source/table/svdotable.cxx +++ b/svx/source/table/svdotable.cxx @@ -402,7 +402,7 @@ SdrTableObjImpl& SdrTableObjImpl::operator=( const SdrTableObjImpl& rSource ) } // set that TableStyle - mxTableStyle = xNewTableStyle; + mxTableStyle = std::move(xNewTableStyle); // Apply Style to Cells ApplyCellStyles(); |