summaryrefslogtreecommitdiff
path: root/sw/inc/unoframe.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-06 08:59:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-07 11:25:55 +0100
commitdd0dceb51122b4e8e969f848d9f046e91962d254 (patch)
treef927f0870a54ad7cb887e6e7d5bb7956d44d0665 /sw/inc/unoframe.hxx
parentcaf1eb15838729e05a70d2fcb8de6834394b5764 (diff)
loplugin:salcall handle static methods
Change-Id: Id6820abec4b8ca8bee26d62b333fd30b42a14aec Reviewed-on: https://gerrit.libreoffice.org/46007 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc/unoframe.hxx')
-rw-r--r--sw/inc/unoframe.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/unoframe.hxx b/sw/inc/unoframe.hxx
index 0fcff03dae77..ac0158c54c5f 100644
--- a/sw/inc/unoframe.hxx
+++ b/sw/inc/unoframe.hxx
@@ -237,8 +237,8 @@ public:
//XPropertySet
virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
- void * SAL_CALL operator new( size_t ) throw();
- void SAL_CALL operator delete( void * ) throw();
+ void * operator new( size_t ) throw();
+ void operator delete( void * ) throw();
};
typedef cppu::ImplInheritanceHelper
@@ -268,8 +268,8 @@ public:
// XEventsSupplier
virtual css::uno::Reference< css::container::XNameReplace > SAL_CALL getEvents( ) override;
- void * SAL_CALL operator new( size_t ) throw();
- void SAL_CALL operator delete( void * ) throw();
+ void * operator new( size_t ) throw();
+ void operator delete( void * ) throw();
};
class SwOLENode;
@@ -309,8 +309,8 @@ public:
// XEventsSupplier
virtual css::uno::Reference< css::container::XNameReplace > SAL_CALL getEvents( ) override;
- void * SAL_CALL operator new( size_t ) throw();
- void SAL_CALL operator delete( void * ) throw();
+ void * operator new( size_t ) throw();
+ void operator delete( void * ) throw();
};
class SwXOLEListener : public cppu::WeakImplHelper<css::util::XModifyListener>,