include/xmloff/xmlprcon.hxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 02bf9a2e65042afc224f52680cbcfcf30e298ad1
Author:     Mike Kaganski <[email protected]>
AuthorDate: Sat Apr 8 14:14:16 2023 +0200
Commit:     Mike Kaganski <[email protected]>
CommitDate: Sat Apr 8 19:37:29 2023 +0200

    Delete other special copy/move functions
    
    As suggested in
    
https://gerrit.libreoffice.org/c/core/+/146098/2#message-c2f0d0c43d5315650136a10470785ea2ec4d6e58
    
    Change-Id: Ibf9ef1cf61fd2a8d05ce5e7a78c8bac793318485
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150147
    Tested-by: Jenkins
    Reviewed-by: Mike Kaganski <[email protected]>

diff --git a/include/xmloff/xmlprcon.hxx b/include/xmloff/xmlprcon.hxx
index 62b5f49ebb60..9eedecbbb31f 100644
--- a/include/xmloff/xmlprcon.hxx
+++ b/include/xmloff/xmlprcon.hxx
@@ -45,7 +45,10 @@ public:
             ::std::vector< XMLPropertyState > &rProps,
             rtl::Reference < SvXMLImportPropertyMapper > xMap,
               sal_Int32 nStartIdx = -1, sal_Int32 nEndIdx = -1 );
+    SvXMLPropertySetContext(const SvXMLPropertySetContext&) = delete;
     SvXMLPropertySetContext(SvXMLPropertySetContext&&) = delete;
+    void operator=(const SvXMLPropertySetContext&) = delete;
+    void operator=(SvXMLPropertySetContext&&) = delete;
 
     virtual ~SvXMLPropertySetContext() override;
 

Reply via email to