summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/appuno.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/appl/appuno.cxx')
-rw-r--r--sfx2/source/appl/appuno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/appuno.cxx b/sfx2/source/appl/appuno.cxx
index 6c75faa21977..26f0e336a9f2 100644
--- a/sfx2/source/appl/appuno.cxx
+++ b/sfx2/source/appl/appuno.cxx
@@ -264,7 +264,7 @@ void TransformParameters( sal_uInt16 nSlotId, const uno::Sequence<beans::Propert
// at least one part of the complex item must be present; other parts can have default values
if ( nFound > 0 )
- rSet.Put( *pItem );
+ rSet.Put( std::move(pItem) );
}
return;
@@ -370,7 +370,7 @@ void TransformParameters( sal_uInt16 nSlotId, const uno::Sequence<beans::Propert
if ( bRet )
// only use successfully converted items
- rSet.Put( *pItem );
+ rSet.Put( std::move(pItem) );
}
}