Removed several useless macros: A2OU, A2S, C2U, C2S, OUSTR, OUSTRING
Change-Id: Ie859cb2dfdc7103c379fce56be88eef8fe390afd Reviewed-on: https://gerrit.libreoffice.org/1924 Tested-by: Luboš Luňák <l.lunak@suse.cz> Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
This commit is contained in:
committed by
Luboš Luňák
parent
f8569cd9a2
commit
97eb8a6e0e
@@ -84,7 +84,7 @@ void SAL_CALL ScriptProtocolHandler::initialize(
|
||||
if ( aArguments.getLength() &&
|
||||
sal_False == ( aArguments[ 0 ] >>= m_xFrame ) )
|
||||
{
|
||||
::rtl::OUString temp = OUSTR( "ScriptProtocolHandler::initialize: could not extract reference to the frame" );
|
||||
::rtl::OUString temp = "ScriptProtocolHandler::initialize: could not extract reference to the frame";
|
||||
throw RuntimeException( temp, Reference< XInterface >() );
|
||||
}
|
||||
|
||||
@@ -396,12 +396,12 @@ void ScriptProtocolHandler::createScriptProvider()
|
||||
}
|
||||
catch ( const RuntimeException & e )
|
||||
{
|
||||
::rtl::OUString temp = OUSTR( "ScriptProtocolHandler::createScriptProvider(), " );
|
||||
::rtl::OUString temp = "ScriptProtocolHandler::createScriptProvider(), ";
|
||||
throw RuntimeException( temp.concat( e.Message ), Reference< XInterface >() );
|
||||
}
|
||||
catch ( const Exception & e )
|
||||
{
|
||||
::rtl::OUString temp = OUSTR( "ScriptProtocolHandler::createScriptProvider: " );
|
||||
::rtl::OUString temp = "ScriptProtocolHandler::createScriptProvider: ";
|
||||
throw RuntimeException( temp.concat( e.Message ), Reference< XInterface >() );
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user