summaryrefslogtreecommitdiffstats
path: root/fpicker/source/office/fpinteraction.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker/source/office/fpinteraction.cxx')
-rw-r--r--fpicker/source/office/fpinteraction.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/fpicker/source/office/fpinteraction.cxx b/fpicker/source/office/fpinteraction.cxx
index 16ea3368ae08..9d3591d7586b 100644
--- a/fpicker/source/office/fpinteraction.cxx
+++ b/fpicker/source/office/fpinteraction.cxx
@@ -25,6 +25,7 @@
#include <com/sun/star/task/XInteractionRetry.hpp>
#include <sal/log.hxx>
+#include <utility>
namespace svt
@@ -34,8 +35,8 @@ namespace svt
using namespace ::com::sun::star::task;
using namespace ::com::sun::star::ucb;
- OFilePickerInteractionHandler::OFilePickerInteractionHandler( const css::uno::Reference< css::task::XInteractionHandler >& _rxMaster )
- :m_xMaster( _rxMaster )
+ OFilePickerInteractionHandler::OFilePickerInteractionHandler( css::uno::Reference< css::task::XInteractionHandler > _xMaster )
+ :m_xMaster(std::move( _xMaster ))
,m_bUsed( false )
,m_eInterceptions( OFilePickerInteractionHandler::E_NOINTERCEPTION )
{