summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuinsert.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 /sd/source/ui/func/fuinsert.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 'sd/source/ui/func/fuinsert.cxx')
-rw-r--r--sd/source/ui/func/fuinsert.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sd/source/ui/func/fuinsert.cxx b/sd/source/ui/func/fuinsert.cxx
index e9bb90c84319..f21dd7e0c689 100644
--- a/sd/source/ui/func/fuinsert.cxx
+++ b/sd/source/ui/func/fuinsert.cxx
@@ -256,7 +256,7 @@ void FuInsertOLE::DoExecute( SfxRequest& rReq )
SdrObject* pPickObj = mpView->GetEmptyPresentationObject( ePresObjKind );
// insert diagram or Calc table
- ::rtl::OUString aObjName;
+ OUString aObjName;
SvGlobalName aName;
if (nSlotId == SID_INSERT_DIAGRAM)
aName = SvGlobalName( SO3_SCH_CLASSID);
@@ -345,15 +345,15 @@ void FuInsertOLE::DoExecute( SfxRequest& rReq )
{
if (nSlotId == SID_INSERT_DIAGRAM)
{
- pOleObj->SetProgName( rtl::OUString( "StarChart" ));
+ pOleObj->SetProgName( OUString( "StarChart" ));
}
else if (nSlotId == SID_ATTR_TABLE)
{
- pOleObj->SetProgName( rtl::OUString( "StarCalc" ) );
+ pOleObj->SetProgName( OUString( "StarCalc" ) );
}
else if (nSlotId == SID_INSERT_MATH)
{
- pOleObj->SetProgName( rtl::OUString( "StarMath" ) );
+ pOleObj->SetProgName( OUString( "StarMath" ) );
}
pOleObj->SetLogicRect(aRect);
@@ -387,9 +387,9 @@ void FuInsertOLE::DoExecute( SfxRequest& rReq )
uno::Reference < embed::XEmbeddedObject > xObj;
uno::Reference < embed::XStorage > xStorage = comphelper::OStorageHelper::GetTemporaryStorage();
SvObjectServerList aServerLst;
- ::rtl::OUString aName;
+ OUString aName;
- ::rtl::OUString aIconMediaType;
+ OUString aIconMediaType;
uno::Reference< io::XInputStream > xIconMetaFile;
SFX_REQUEST_ARG( rReq, pNameItem, SfxGlobalNameItem, SID_INSERT_OBJECT, sal_False );
@@ -467,7 +467,7 @@ void FuInsertOLE::DoExecute( SfxRequest& rReq )
if ( xSet.is() )
{
xSet->setPropertyValue("PluginURL",
- uno::makeAny( ::rtl::OUString( aURL.GetMainURL( INetURLObject::NO_DECODE ) ) ) );
+ uno::makeAny( OUString( aURL.GetMainURL( INetURLObject::NO_DECODE ) ) ) );
}
}
}
@@ -665,7 +665,7 @@ FunctionReference FuInsertAVMedia::Create( ViewShell* pViewSh, ::sd::Window* pWi
void FuInsertAVMedia::DoExecute( SfxRequest& rReq )
{
- ::rtl::OUString aURL;
+ OUString aURL;
const SfxItemSet* pReqArgs = rReq.GetArgs();
bool bAPI = false;