summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/EventThread.hxx4
-rw-r--r--forms/source/xforms/binding.cxx2
-rw-r--r--forms/source/xforms/binding.hxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/component/EventThread.hxx b/forms/source/component/EventThread.hxx
index 0050467d9818..ec5e8d706faa 100644
--- a/forms/source/component/EventThread.hxx
+++ b/forms/source/component/EventThread.hxx
@@ -97,8 +97,8 @@ public:
virtual void SAL_CALL disposing(const css::lang::EventObject& _rSource ) override;
// Resolve ambiguity: both OWeakObject and OObject have these memory operators
- void * SAL_CALL operator new( size_t size ) throw() { return osl::Thread::operator new(size); }
- void SAL_CALL operator delete( void * p ) throw() { osl::Thread::operator delete(p); }
+ void * operator new( size_t size ) throw() { return osl::Thread::operator new(size); }
+ void operator delete( void * p ) throw() { osl::Thread::operator delete(p); }
private:
void impl_clearEventQueue();
diff --git a/forms/source/xforms/binding.cxx b/forms/source/xforms/binding.cxx
index 2b9cc9f97390..16276212a27e 100644
--- a/forms/source/xforms/binding.cxx
+++ b/forms/source/xforms/binding.cxx
@@ -311,7 +311,7 @@ css::uno::Sequence<sal_Int8> Binding::getUnoTunnelID()
return aImplementationId.getImplementationId();
}
-Binding* SAL_CALL Binding::getBinding( const Reference<XPropertySet>& xPropertySet )
+Binding* Binding::getBinding( const Reference<XPropertySet>& xPropertySet )
{
Reference<XUnoTunnel> xTunnel( xPropertySet, UNO_QUERY );
return xTunnel.is()
diff --git a/forms/source/xforms/binding.hxx b/forms/source/xforms/binding.hxx
index 1bd019a7d497..dc6ba779bbc4 100644
--- a/forms/source/xforms/binding.hxx
+++ b/forms/source/xforms/binding.hxx
@@ -258,7 +258,7 @@ public:
// the ID for XUnoTunnel calls
static css::uno::Sequence<sal_Int8> getUnoTunnelID();
- static Binding* SAL_CALL getBinding( const css::uno::Reference<css::beans::XPropertySet>& );
+ static Binding* getBinding( const css::uno::Reference<css::beans::XPropertySet>& );
private: