svtools/source/control/accessibletabbarpagelist.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit f09e0f49b5b1629f394e1d0f871d8faba24e15e2 Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Sun Mar 16 13:53:59 2025 +0000 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Sun Mar 16 15:57:58 2025 +0100 cid#1644498 COPY_INSTEAD_OF_MOVE Change-Id: Ia1d9555a98244e7a0aeecf3a1f084f9c222c8cba Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183001 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/svtools/source/control/accessibletabbarpagelist.cxx b/svtools/source/control/accessibletabbarpagelist.cxx index 4d1790c7980a..ec67c2800d14 100644 --- a/svtools/source/control/accessibletabbarpagelist.cxx +++ b/svtools/source/control/accessibletabbarpagelist.cxx @@ -496,7 +496,7 @@ namespace accessibility Point aPos = vcl::unohelper::ConvertToVCLPoint(rPoint); if ( aRect.Contains( aPos ) ) { - xChild = xAcc; + xChild = std::move(xAcc); break; } }