diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-08-09 17:13:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-08-09 21:00:59 +0200 |
commit | e63da1689db1e3801f0baa149c847dc3712f63cc (patch) | |
tree | 015b7d3e36d178cb0c7113f36aeef52657276496 /svx | |
parent | 7c71d1c296e8a1976aa418e9a6c8e4af1b157c93 (diff) |
cid#1556026 COPY_INSTEAD_OF_MOVE
and
cid#1556027 COPY_INSTEAD_OF_MOVE
cid#1556030 COPY_INSTEAD_OF_MOVE
cid#1556032 COPY_INSTEAD_OF_MOVE
cid#1556036 COPY_INSTEAD_OF_MOVE
cid#1556049 COPY_INSTEAD_OF_MOVE
cid#1557490 COPY_INSTEAD_OF_MOVE
Change-Id: If694c4d518323a8ae58bb13569f401b2b36cd427
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171704
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/fmcomp/fmgridcl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/fmcomp/fmgridcl.cxx b/svx/source/fmcomp/fmgridcl.cxx index 3613615174e8..8e91cbb56a35 100644 --- a/svx/source/fmcomp/fmgridcl.cxx +++ b/svx/source/fmcomp/fmgridcl.cxx @@ -327,7 +327,7 @@ sal_Int8 FmGridHeader::ExecuteDrop( const ExecuteDropEvent& _rEvt ) // do the drop asynchronously // (85957 - UI actions within the drop are not allowed, but we want to open a popup menu) - m_pImpl->aDropData = aColumn; + m_pImpl->aDropData = std::move(aColumn); m_pImpl->aDropData[DataAccessDescriptorProperty::Connection] <<= xConnection; m_pImpl->aDropData[DataAccessDescriptorProperty::ColumnObject] <<= xField; |