summaryrefslogtreecommitdiffstats
path: root/connectivity/source/inc/TKeyValue.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/TKeyValue.hxx')
-rw-r--r--connectivity/source/inc/TKeyValue.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/inc/TKeyValue.hxx b/connectivity/source/inc/TKeyValue.hxx
index bd77b0caa7d4..4cd5613b7bd2 100644
--- a/connectivity/source/inc/TKeyValue.hxx
+++ b/connectivity/source/inc/TKeyValue.hxx
@@ -34,13 +34,13 @@ namespace connectivity
~OKeyValue();
- static void * SAL_CALL operator new( size_t nSize )
+ static void * operator new( size_t nSize )
{ return ::rtl_allocateMemory( nSize ); }
- static void * SAL_CALL operator new( size_t,void* _pHint )
+ static void * operator new( size_t,void* _pHint )
{ return _pHint; }
- static void SAL_CALL operator delete( void * pMem )
+ static void operator delete( void * pMem )
{ ::rtl_freeMemory( pMem ); }
- static void SAL_CALL operator delete( void *,void* )
+ static void operator delete( void *,void* )
{ }
static OKeyValue* createKeyValue(sal_Int32 nVal);