diff options
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/client/content.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx index cc5fe291febe..27f1296e41b0 100644 --- a/ucbhelper/source/client/content.cxx +++ b/ucbhelper/source/client/content.cxx @@ -937,11 +937,10 @@ bool Content::insertNewContent( const OUString& rContentType, false /* ReplaceExisting */ ) ) ); aNewContent.m_xImpl->inserted(); - rNewContent = aNewContent; + rNewContent = std::move(aNewContent); return true; } - void Content::transferContent( const Content& rSourceContent, InsertOperation eOperation, const OUString & rTitle, |