summaryrefslogtreecommitdiff
path: root/binaryurp/source/proxy.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/proxy.cxx')
-rw-r--r--binaryurp/source/proxy.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/binaryurp/source/proxy.cxx b/binaryurp/source/proxy.cxx
index 5f83660f1ddd..0e5a92b68f9e 100644
--- a/binaryurp/source/proxy.cxx
+++ b/binaryurp/source/proxy.cxx
@@ -42,17 +42,17 @@ namespace binaryurp {
namespace {
-extern "C" void SAL_CALL proxy_acquireInterface(uno_Interface * pInterface) {
+extern "C" void proxy_acquireInterface(uno_Interface * pInterface) {
assert(pInterface != nullptr);
static_cast< Proxy * >(pInterface)->do_acquire();
}
-extern "C" void SAL_CALL proxy_releaseInterface(uno_Interface * pInterface) {
+extern "C" void proxy_releaseInterface(uno_Interface * pInterface) {
assert(pInterface != nullptr);
static_cast< Proxy * >(pInterface)->do_release();
}
-extern "C" void SAL_CALL proxy_dispatchInterface(
+extern "C" void proxy_dispatchInterface(
uno_Interface * pUnoI, typelib_TypeDescription const * pMemberType,
void * pReturn, void ** pArgs, uno_Any ** ppException)
{