diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-12-10 15:55:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-12-10 20:27:43 +0100 |
commit | 95e12eaebc00be5385e0abef2c5e70b7729af6f4 (patch) | |
tree | 980b94df68d575bb27f3b28ae38723279b57c43a /vcl/source/app | |
parent | 9531f83cc73e26ce766713e575eb14152d118018 (diff) |
cid#1545789 COPY_INSTEAD_OF_MOVE
and
cid#1545791 COPY_INSTEAD_OF_MOVE
cid#1545800 COPY_INSTEAD_OF_MOVE
cid#1545806 COPY_INSTEAD_OF_MOVE
cid#1545817 COPY_INSTEAD_OF_MOVE
cid#1545832 COPY_INSTEAD_OF_MOVE
cid#1545834 COPY_INSTEAD_OF_MOVE
cid#1545841 COPY_INSTEAD_OF_MOVE
cid#1545848 COPY_INSTEAD_OF_MOVE
cid#1545852 COPY_INSTEAD_OF_MOVE
cid#1545854 COPY_INSTEAD_OF_MOVE
cid#1545864 COPY_INSTEAD_OF_MOVE
cid#1545875 COPY_INSTEAD_OF_MOVE
cid#1545882 COPY_INSTEAD_OF_MOVE
cid#1545900 COPY_INSTEAD_OF_MOVE
cid#1545901 COPY_INSTEAD_OF_MOVE
cid#1545908 COPY_INSTEAD_OF_MOVE
cid#1545921 COPY_INSTEAD_OF_MOVE
cid#1546054 COPY_INSTEAD_OF_MOVE
cid#1546145 COPY_INSTEAD_OF_MOVE
cid#1546146 COPY_INSTEAD_OF_MOVE
Change-Id: I8b23d0457cb293aa0e33593131224c1cdd1d8eb1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160545
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'vcl/source/app')
-rw-r--r-- | vcl/source/app/htmltransferable.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/htmltransferable.cxx b/vcl/source/app/htmltransferable.cxx index 24f65fe929b1..27a67fb9b2f4 100644 --- a/vcl/source/app/htmltransferable.cxx +++ b/vcl/source/app/htmltransferable.cxx @@ -32,7 +32,7 @@ using namespace ::com::sun::star; namespace vcl::unohelper { HtmlTransferable::HtmlTransferable(OString sData) - : data(sData) + : data(std::move(sData)) { } |