summaryrefslogtreecommitdiff
path: root/scripting/source/provider/ScriptImpl.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /scripting/source/provider/ScriptImpl.cxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'scripting/source/provider/ScriptImpl.cxx')
-rw-r--r--scripting/source/provider/ScriptImpl.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripting/source/provider/ScriptImpl.cxx b/scripting/source/provider/ScriptImpl.cxx
index 2059a86cb9ea..5ca950916fe6 100644
--- a/scripting/source/provider/ScriptImpl.cxx
+++ b/scripting/source/provider/ScriptImpl.cxx
@@ -35,7 +35,7 @@ namespace func_provider
ScriptImpl::ScriptImpl(
const Reference< beans::XPropertySet > & scriptingContext,
const Reference< runtime::XScriptInvocation > & runtimeMgr,
- const ::rtl::OUString& scriptURI )
+ const OUString& scriptURI )
throw ( RuntimeException ) :
m_XScriptingContext( scriptingContext, UNO_SET_THROW ),
m_RunTimeManager( runtimeMgr, UNO_SET_THROW ),
@@ -69,14 +69,14 @@ throw ( lang::IllegalArgumentException, script::CannotConvertException,
}
catch ( const lang::IllegalArgumentException & iae )
{
- ::rtl::OUString temp = "ScriptImpl::invoke IllegalArgumentException : ";
+ OUString temp = "ScriptImpl::invoke IllegalArgumentException : ";
throw lang::IllegalArgumentException( temp.concat( iae.Message ),
Reference< XInterface > (),
iae.ArgumentPosition );
}
catch ( const script::CannotConvertException & cce )
{
- ::rtl::OUString temp = "ScriptImpl::invoke CannotConvertException : ";
+ OUString temp = "ScriptImpl::invoke CannotConvertException : ";
throw script::CannotConvertException( temp.concat( cce.Message ),
Reference< XInterface > (),
cce.DestinationTypeClass,
@@ -85,14 +85,14 @@ throw ( lang::IllegalArgumentException, script::CannotConvertException,
}
catch ( const reflection::InvocationTargetException & ite )
{
- ::rtl::OUString temp = "ScriptImpl::invoke InvocationTargetException : ";
+ OUString temp = "ScriptImpl::invoke InvocationTargetException : ";
throw reflection::InvocationTargetException( temp.concat( ite.Message ),
Reference< XInterface > (),
ite.TargetException );
}
catch ( const RuntimeException & re )
{
- ::rtl::OUString temp = "ScriptImpl::invoke RuntimeException : ";
+ OUString temp = "ScriptImpl::invoke RuntimeException : ";
throw RuntimeException( temp.concat( re.Message ),
Reference< XInterface > () );
}