summaryrefslogtreecommitdiffstats
path: root/scripting/source/runtimemgr/StorageBridge.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/source/runtimemgr/StorageBridge.cxx')
-rw-r--r--scripting/source/runtimemgr/StorageBridge.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripting/source/runtimemgr/StorageBridge.cxx b/scripting/source/runtimemgr/StorageBridge.cxx
index 2b579a7c7781..878a96347aa4 100644
--- a/scripting/source/runtimemgr/StorageBridge.cxx
+++ b/scripting/source/runtimemgr/StorageBridge.cxx
@@ -59,7 +59,7 @@ StorageBridge::StorageBridge( const Reference< XComponentContext >& xContext,
{
initStorage();
}
- catch ( RuntimeException & re )
+ catch ( const RuntimeException & re )
{
OUString temp = OUSTR( "StorageBridge::StorageBridge(salIn32&): " );
throw RuntimeException( temp.concat( re.Message ), Reference< XInterface >() );
@@ -79,12 +79,12 @@ StorageBridge::initStorage() throw ( ::com::sun::star::uno::RuntimeException )
Reference< XInterface > xScriptStorage( xScriptStorageManager->getScriptStorage( m_sid ), UNO_SET_THROW );
m_xScriptInfoAccess.set( xScriptStorage, UNO_QUERY_THROW );
}
- catch ( RuntimeException & re )
+ catch ( const RuntimeException & re )
{
OUString temp = OUSTR( "StorageBridge::StorageBridge: " );
throw RuntimeException( temp.concat( re.Message ), Reference< XInterface >() );
}
- catch ( Exception & e )
+ catch ( const Exception & e )
{
OUString temp = OUSTR( "StorageBridge::StorageBridge: " );
throw RuntimeException( temp.concat( e.Message ), Reference< XInterface >() );
@@ -102,7 +102,7 @@ throw ( lang::IllegalArgumentException,
{
results = m_xScriptInfoAccess->getScriptLogicalNames();
}
- catch ( Exception &e )
+ catch ( const Exception &e )
{
OUString temp = OUSTR( "StorageBridge::getScriptLogicalNames: " );
throw RuntimeException( temp.concat( e.Message ), Reference< XInterface >() );
@@ -121,7 +121,7 @@ throw ( lang::IllegalArgumentException, RuntimeException )
{
results = m_xScriptInfoAccess->getImplementations( queryURI );
}
- catch ( Exception &e )
+ catch ( const Exception &e )
{
OUString temp = OUSTR( "StorageBridge::getImplementations: " );
throw RuntimeException( temp.concat( e.Message ), Reference< XInterface >() );