diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2023-01-24 19:32:30 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2023-01-24 20:55:58 +0000 |
commit | 639d092bc258f079f0c1655265347c94d0c51ab1 (patch) | |
tree | e2a13ce5b6ea4f66a736fa459ba4afe9b66fdde5 /include | |
parent | 880117f74343087ff6a162426683378c9510ede6 (diff) |
Fix build
... failed locally with
C:\lo\src\core\include\rtl/ref.hxx(129): error C2027: use of undefined type 'SvXMLImportPropertyMapper'
C:\lo\src\core\include\xmloff/shapeimport.hxx(46): note: see declaration of 'SvXMLImportPropertyMapper'
C:\lo\src\core\include\rtl/ref.hxx(127): note: while compiling class template member function 'rtl::Reference<SvXMLImportPropertyMapper>::~Reference(void)'
C:\lo\src\core\include\xmloff/xmlprcon.hxx(64): note: see reference to function template instantiation 'rtl::Reference<SvXMLImportPropertyMapper>::~Reference(void)' being compiled
C:\lo\src\core\include\xmloff/xmlprcon.hxx(37): note: see reference to class template instantiation 'rtl::Reference<SvXMLImportPropertyMapper>' being compiled
Change-Id: I08211c58ca61d2bc81062d0b104d8ce47ffccd91
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146098
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/xmlprcon.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/xmloff/xmlprcon.hxx b/include/xmloff/xmlprcon.hxx index 26f94e08295e..62b5f49ebb60 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; |