summaryrefslogtreecommitdiffstats
path: root/oox/source/core/fasttokenhandler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/core/fasttokenhandler.cxx')
-rw-r--r--oox/source/core/fasttokenhandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/core/fasttokenhandler.cxx b/oox/source/core/fasttokenhandler.cxx
index ee03144e2e9e..7709c6c5a25a 100644
--- a/oox/source/core/fasttokenhandler.cxx
+++ b/oox/source/core/fasttokenhandler.cxx
@@ -31,18 +31,18 @@ namespace core {
using namespace ::com::sun::star::uno;
-OUString SAL_CALL FastTokenHandler_getImplementationName()
+OUString FastTokenHandler_getImplementationName()
{
return OUString( "com.sun.star.comp.oox.core.FastTokenHandler" );
}
-Sequence< OUString > SAL_CALL FastTokenHandler_getSupportedServiceNames()
+Sequence< OUString > FastTokenHandler_getSupportedServiceNames()
{
Sequence<OUString> aServiceNames { "com.sun.star.xml.sax.FastTokenHandler" };
return aServiceNames;
}
-Reference< XInterface > SAL_CALL FastTokenHandler_createInstance( const Reference< XComponentContext >& /*rxContext*/ )
+Reference< XInterface > FastTokenHandler_createInstance( const Reference< XComponentContext >& /*rxContext*/ )
{
return static_cast< ::cppu::OWeakObject* >( new FastTokenHandler );
}