diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-01-24 15:00:06 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-01-24 20:45:54 +0000 |
commit | 880117f74343087ff6a162426683378c9510ede6 (patch) | |
tree | e6f8e9c0153f2755a1395105abc3738137ec0f0f /include | |
parent | 74d3d85dc523dbb37326db7146d195e3b9b95fce (diff) |
Missing include
> include\rtl/ref.hxx(129): error C2027: use of undefined type 'SvXMLImportPropertyMapper'
> include\xmloff/shapeimport.hxx(46): note: see declaration of 'SvXMLImportPropertyMapper'
> include\rtl/ref.hxx(127): note: while compiling class template member function 'rtl::Reference<SvXMLImportPropertyMapper>::~Reference(void)'
> include\xmloff/xmlprcon.hxx(64): note: see reference to function template instantiation 'rtl::Reference<SvXMLImportPropertyMapper>::~Reference(void)' being compiled
> include\xmloff/xmlprcon.hxx(37): note: see reference to class template instantiation 'rtl::Reference<SvXMLImportPropertyMapper>' being compiled
Change-Id: I77083e021ae16bce8b2f749b96b6c6607c22ff87
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146072
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/xmlprcon.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xmloff/xmlprcon.hxx b/include/xmloff/xmlprcon.hxx index 4dd39f94f9cd..26f94e08295e 100644 --- a/include/xmloff/xmlprcon.hxx +++ b/include/xmloff/xmlprcon.hxx @@ -21,10 +21,10 @@ #define INCLUDED_XMLOFF_XMLPRCON_HXX #include <xmloff/xmlictxt.hxx> +#include <xmloff/xmlimppr.hxx> #include <vector> -class SvXMLImportPropertyMapper; struct XMLPropertyState; class XMLOFF_DLLPUBLIC SvXMLPropertySetContext : public SvXMLImportContext |