summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-09-19 08:55:11 +0300
committerTor Lillqvist <tml@collabora.com>2015-09-19 08:55:11 +0300
commit9a5ba07ca190df89cf0cacbeca7cfafde1794686 (patch)
tree1f17f29ad0de417f814a68efd3ecefad352200a8 /unotools
parent2dea4d270806f47a324cb09c1db7751499930cf7 (diff)
Fix C2695: overriding virtual function differs only by calling convention
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/misc/ServiceDocumenter.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unotools/source/misc/ServiceDocumenter.hxx b/unotools/source/misc/ServiceDocumenter.hxx
index e1855b18476a..1ade2505512a 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()
{};