include/xmloff/xmlprcon.hxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit b20cb3e24235d495305a34ae7d2c52c5df69ccd7
Author: Mike Kaganski <[email protected]>
AuthorDate: Sat Apr 8 14:14:16 2023 +0200
Commit: Mike Kaganski <[email protected]>
CommitDate: Sun Dec 31 04:55:47 2023 +0100
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]>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161281
Tested-by: Jenkins CollaboraOffice <[email protected]>
diff --git a/include/xmloff/xmlprcon.hxx b/include/xmloff/xmlprcon.hxx
index 0df8caf05949..a25c6f38f4af 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;
commit 1c36712cc73389e0e466f83001b3e4176f0f0ee8
Author: Mike Kaganski <[email protected]>
AuthorDate: Tue Jan 24 19:32:30 2023 +0300
Commit: Mike Kaganski <[email protected]>
CommitDate: Sun Dec 31 04:55:39 2023 +0100
Fix build
... failed locally with
C:\lo\src C:\lo\src C:\lo\src C:\lo\src C:\lo\src
Change-Id: I08211c58ca61d2bc81062d0b104d8ce47ffccd91
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146098
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <[email protected]>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161280
Tested-by: Jenkins CollaboraOffice <[email protected]>
diff --git a/include/xmloff/xmlprcon.hxx b/include/xmloff/xmlprcon.hxx
index 4dd39f94f9cd..0df8caf05949 100644
--- a/include/xmloff/xmlprcon.hxx
+++ b/include/xmloff/xmlprcon.hxx
@@ -45,6 +45,7 @@ public:
::std::vector< XMLPropertyState > &rProps,
rtl::Reference < SvXMLImportPropertyMapper > xMap,
sal_Int32 nStartIdx = -1, sal_Int32 nEndIdx = -1 );
+ SvXMLPropertySetContext(SvXMLPropertySetContext&&) = delete;
virtual ~SvXMLPropertySetContext() override;