diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/sax/fastparser.hxx | 3 | ||||
-rw-r--r-- | include/xmloff/xmlimp.hxx | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/include/sax/fastparser.hxx b/include/sax/fastparser.hxx index 5af3ac1d1f57..aebaa4056aa0 100644 --- a/include/sax/fastparser.hxx +++ b/include/sax/fastparser.hxx @@ -64,8 +64,7 @@ public: virtual void SAL_CALL setEntityResolver( const css::uno::Reference< css::xml::sax::XEntityResolver >& Resolver ) override; virtual void SAL_CALL setLocale( const css::lang::Locale& rLocale ) override; virtual void SAL_CALL setNamespaceHandler( const css::uno::Reference< css::xml::sax::XFastNamespaceHandler >& Handler) override; - virtual void SAL_CALL setCustomEntityNames( const ::css::uno::Sequence< ::rtl::OUString >& names, - const ::css::uno::Sequence< ::rtl::OUString >& replacements ) override; + virtual void SAL_CALL setCustomEntityNames( const ::css::uno::Sequence< ::css::beans::Pair<::rtl::OUString, ::rtl::OUString> >& replacements ) override; // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) override; diff --git a/include/xmloff/xmlimp.hxx b/include/xmloff/xmlimp.hxx index 9c402f199ffa..494de3cbcd26 100644 --- a/include/xmloff/xmlimp.hxx +++ b/include/xmloff/xmlimp.hxx @@ -335,8 +335,7 @@ public: virtual void SAL_CALL setEntityResolver( const css::uno::Reference< css::xml::sax::XEntityResolver >& Resolver ) override; virtual void SAL_CALL setLocale( const css::lang::Locale& rLocale ) override; virtual void SAL_CALL setNamespaceHandler( const css::uno::Reference< css::xml::sax::XFastNamespaceHandler >& Handler) override; - virtual void SAL_CALL setCustomEntityNames( const ::css::uno::Sequence< ::rtl::OUString >& names, - const ::css::uno::Sequence< ::rtl::OUString >& replacements ) override; + virtual void SAL_CALL setCustomEntityNames( const ::css::uno::Sequence< ::css::beans::Pair<::rtl::OUString, ::rtl::OUString> >& replacements ) override; // XImporter virtual void SAL_CALL setTargetDocument( const css::uno::Reference< css::lang::XComponent >& xDoc ) override; |