diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-04 10:07:15 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-05 06:29:03 +0000 |
commit | cbf9b547b685ef0dd3cdf143987176b01c007d56 (patch) | |
tree | 654a5e6be0ec8ed1ff99a5a55e02d3c606fe3aca /lotuswordpro | |
parent | f22fa994603311a36f467a6afea19bc4fad03814 (diff) |
use std::move in a few places
found by
git grep -n '.reset.*.release'
Change-Id: I498709bd32b21d9dbbaa73603ce21d21c274f8dc
Reviewed-on: https://gerrit.libreoffice.org/27863
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwppara1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwppara1.cxx b/lotuswordpro/source/filter/lwppara1.cxx index 7499af4d3514..58436d090809 100644 --- a/lotuswordpro/source/filter/lwppara1.cxx +++ b/lotuswordpro/source/filter/lwppara1.cxx @@ -542,7 +542,7 @@ void LwpPara::OverrideParaNumbering(LwpParaProperty* pProps) pOver->OverrideLevel(m_nLevel); } - m_pParaNumbering.reset(pOver.release()); + m_pParaNumbering = std::move(pOver); } void LwpPara::FindLayouts() |