sax/source/expatwrap/sax_expat.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 6f56c8da07485bb0d3b7755e25c5eb7fc8c95257 Author: Noel Grandin <[email protected]> AuthorDate: Tue Sep 10 13:08:41 2024 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Tue Sep 10 15:41:28 2024 +0200 use more concrete UNO type in sax Change-Id: I3b3423242012b4f637195fb3c35c0315830e06a5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173135 Tested-by: Jenkins Reviewed-by: Noel Grandin <[email protected]> diff --git a/sax/source/expatwrap/sax_expat.cxx b/sax/source/expatwrap/sax_expat.cxx index 2ab32b99ec68..d1eae3997514 100644 --- a/sax/source/expatwrap/sax_expat.cxx +++ b/sax/source/expatwrap/sax_expat.cxx @@ -139,7 +139,7 @@ struct Entity sax_expatwrap::XMLFile2UTFConverter converter; }; - +class LocatorImpl; class SaxExpatParser_Impl { public: // module scope @@ -152,7 +152,7 @@ public: // module scope css::uno::Reference< XErrorHandler > rErrorHandler; css::uno::Reference< XDTDHandler > rDTDHandler; css::uno::Reference< XEntityResolver > rEntityResolver; - css::uno::Reference < XLocator > rDocumentLocator; + rtl::Reference < LocatorImpl > rDocumentLocator; rtl::Reference < comphelper::AttributeList > rAttrList;
