[Libreoffice-commits] core.git: unotools/source
Tor Lillqvist
tml at collabora.com
Fri Sep 18 22:56:32 PDT 2015
unotools/source/misc/ServiceDocumenter.hxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 9a5ba07ca190df89cf0cacbeca7cfafde1794686
Author: Tor Lillqvist <tml at collabora.com>
Date: Sat Sep 19 08:55:11 2015 +0300
Fix C2695: overriding virtual function differs only by calling convention
diff --git a/unotools/source/misc/ServiceDocumenter.hxx b/unotools/source/misc/ServiceDocumenter.hxx
index e1855b1..1ade250 100644
--- a/unotools/source/misc/ServiceDocumenter.hxx
+++ b/unotools/source/misc/ServiceDocumenter.hxx
@@ -33,9 +33,9 @@ class ServiceDocumenter : public ::cppu::WeakImplHelper<
{ return m_sServiceBaseUrl; };
virtual void SAL_CALL setServiceBaseUrl( const ::rtl::OUString& sServiceBaseUrl ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ m_sServiceBaseUrl = sServiceBaseUrl; };
- virtual void showServiceDocs( const ::css::uno::Reference< ::css::lang::XServiceInfo >& xService) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual void showInterfaceDocs( const ::css::uno::Reference< ::css::lang::XTypeProvider >& xTypeProvider ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual void showCoreDocs( const ::css::uno::Reference< ::css::lang::XServiceInfo >& xService) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL showServiceDocs( const ::css::uno::Reference< ::css::lang::XServiceInfo >& xService) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL showInterfaceDocs( const ::css::uno::Reference< ::css::lang::XTypeProvider >& xTypeProvider ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL showCoreDocs( const ::css::uno::Reference< ::css::lang::XServiceInfo >& xService) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
protected:
virtual ~ServiceDocumenter()
{};
More information about the Libreoffice-commits
mailing list