summaryrefslogtreecommitdiff
path: root/scripting/source/runtimemgr
diff options
context:
space:
mode:
authorAlexander Bergmann <myaddons@gmx.de>2012-01-26 16:00:09 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-01-26 17:41:07 +0000
commit0439af27e1f37b19d4409f34f974d6ade49f99bf (patch)
tree13bbb2549319d74a1a109bf2727aab37dca5b8c7 /scripting/source/runtimemgr
parentf1cb0a4ab4f11dc015be1696c7c7751802171915 (diff)
Code cleanup: ( () ) replaced by (())
Diffstat (limited to 'scripting/source/runtimemgr')
-rw-r--r--scripting/source/runtimemgr/ScriptNameResolverImpl.cxx4
-rw-r--r--scripting/source/runtimemgr/ScriptRuntimeManager.cxx20
2 files changed, 12 insertions, 12 deletions
diff --git a/scripting/source/runtimemgr/ScriptNameResolverImpl.cxx b/scripting/source/runtimemgr/ScriptNameResolverImpl.cxx
index a9b0ed19a070..1ee7580680d9 100644
--- a/scripting/source/runtimemgr/ScriptNameResolverImpl.cxx
+++ b/scripting/source/runtimemgr/ScriptNameResolverImpl.cxx
@@ -612,13 +612,13 @@ SAL_THROW( ( Exception ) )
}
//*************************************************************************
-Sequence< OUString > scriptnri_getSupportedServiceNames() SAL_THROW( () )
+Sequence< OUString > scriptnri_getSupportedServiceNames() SAL_THROW(())
{
return nrs_serviceNames;
}
//*************************************************************************
-OUString scriptnri_getImplementationName() SAL_THROW( () )
+OUString scriptnri_getImplementationName() SAL_THROW(())
{
return nrs_implName;
}
diff --git a/scripting/source/runtimemgr/ScriptRuntimeManager.cxx b/scripting/source/runtimemgr/ScriptRuntimeManager.cxx
index 929cffc213aa..6452911b3ab7 100644
--- a/scripting/source/runtimemgr/ScriptRuntimeManager.cxx
+++ b/scripting/source/runtimemgr/ScriptRuntimeManager.cxx
@@ -368,14 +368,14 @@ static Reference< XInterface > SAL_CALL srm_create(
//*************************************************************************
static Sequence<OUString> srm_getSupportedServiceNames( )
-SAL_THROW( () )
+SAL_THROW(())
{
return s_serviceNames;
}
//*************************************************************************
static OUString srm_getImplementationName( )
-SAL_THROW( () )
+SAL_THROW(())
{
return s_implName;
}
@@ -386,35 +386,35 @@ Reference< XInterface > SAL_CALL scriptnri_create(
SAL_THROW( ( Exception ) );
//*************************************************************************
-Sequence< OUString > scriptnri_getSupportedServiceNames() SAL_THROW( () );
+Sequence< OUString > scriptnri_getSupportedServiceNames() SAL_THROW(());
//*************************************************************************
-OUString scriptnri_getImplementationName() SAL_THROW( () );
+OUString scriptnri_getImplementationName() SAL_THROW(());
//******************** ScriptStorageMangaer defines ***********************
Reference< XInterface > SAL_CALL ssm_create(
Reference< XComponentContext > const & xComponentContext )
SAL_THROW( ( Exception ) );
//*************************************************************************
-Sequence< OUString > ssm_getSupportedServiceNames() SAL_THROW( () );
+Sequence< OUString > ssm_getSupportedServiceNames() SAL_THROW(());
//*************************************************************************
-OUString ssm_getImplementationName() SAL_THROW( () );
+OUString ssm_getImplementationName() SAL_THROW(());
//*************************************************************************
//************ Script Provider defines ************************************
Reference< XInterface > SAL_CALL sp_create( const Reference< XComponentContext > & xCompC );
//******************** ScriptProvider defines ***************************
-Sequence< OUString > sp_getSupportedServiceNames( ) SAL_THROW( () );
+Sequence< OUString > sp_getSupportedServiceNames( ) SAL_THROW(());
//*************************************************************************
-OUString sp_getImplementationName( ) SAL_THROW( () );
+OUString sp_getImplementationName( ) SAL_THROW(());
//*************************************************************************
//************ ScriptStorage defines **************************************
Reference< XInterface > SAL_CALL ss_create( const Reference< XComponentContext > & xCompC );
//******************** ScriptProvider defines ***************************
-Sequence< OUString > ss_getSupportedServiceNames( ) SAL_THROW( () );
+Sequence< OUString > ss_getSupportedServiceNames( ) SAL_THROW(());
//*************************************************************************
-OUString ss_getImplementationName( ) SAL_THROW( () );
+OUString ss_getImplementationName( ) SAL_THROW(());
//*************************************************************************