diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-10-08 09:13:09 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-10-08 17:10:27 +0200 |
commit | 5cd87f195624e2381489084a37dcd43fea24c7b0 (patch) | |
tree | 28f7722e16d6052103a7ecc7468f7980db6285e1 /toolkit | |
parent | 953d8429c9c92ced2e3cb1222cadc29b6f1ef550 (diff) |
loplugin:moveparam in vcl
Change-Id: I6dea009e1031174ecb3d4371e91c9c6d26c6e514
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123245
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/animatedimagespeer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/animatedimagespeer.cxx b/toolkit/source/awt/animatedimagespeer.cxx index d7ba97e24590..d6dc140f6f28 100644 --- a/toolkit/source/awt/animatedimagespeer.cxx +++ b/toolkit/source/awt/animatedimagespeer.cxx @@ -440,7 +440,7 @@ namespace toolkit aImages[ imageIndex++ ] = Image(rCachedImage.xGraphic); } } - pThrobber->setImageList( aImages ); + pThrobber->setImageList( std::move(aImages) ); } catch( const Exception& ) { |