writerperfect/source/writer/EPUBExportFilter.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e21b132f0bc598e4692e9d0d33bcc93add555496
Author:     Caolán McNamara <caolan.mcnam...@collabora.com>
AuthorDate: Mon Jul 28 20:12:29 2025 +0100
Commit:     Caolán McNamara <caolan.mcnam...@collabora.com>
CommitDate: Tue Jul 29 12:38:43 2025 +0200

    cid#1660562 Variable copied when it could be moved
    
    Change-Id: Id3c0df27c5da7717860160ea3537ff3103c0d118
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/188513
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com>

diff --git a/writerperfect/source/writer/EPUBExportFilter.cxx 
b/writerperfect/source/writer/EPUBExportFilter.cxx
index f4797d343465..e4d8ef3e062c 100644
--- a/writerperfect/source/writer/EPUBExportFilter.cxx
+++ b/writerperfect/source/writer/EPUBExportFilter.cxx
@@ -165,7 +165,7 @@ void 
EPUBExportFilter::CreateMetafiles(std::vector<exp::FixedLayoutPage>& rPageM
             static_cast<const sal_Int8*>(aMemoryStream.GetData()), 
aMemoryStream.Tell());
         aPage.aCssPixels = aCss;
         aPage.aChapterNames = aRenderer.getChapterNames();
-        rPageMetafiles.push_back(aPage);
+        rPageMetafiles.push_back(std::move(aPage));
     }
 }
 

Reply via email to