summaryrefslogtreecommitdiff
path: root/sw/source/ui/shells/drformsh.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2012-12-22 20:40:04 +0100
committerMiklos Vajna <vmiklos@suse.cz>2012-12-22 20:40:14 +0100
commit764c3670cf70dbd8a0a0f742576d9c07d51a72a4 (patch)
tree5e73a2115710a5f1fc46294a2bbf906cc3910163 /sw/source/ui/shells/drformsh.cxx
parent71061656d459abecfe55e8725900d699174325df (diff)
sw: kill C2U in ui
Diffstat (limited to 'sw/source/ui/shells/drformsh.cxx')
-rw-r--r--sw/source/ui/shells/drformsh.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/source/ui/shells/drformsh.cxx b/sw/source/ui/shells/drformsh.cxx
index 862e2835b526..4c6d6d572b48 100644
--- a/sw/source/ui/shells/drformsh.cxx
+++ b/sw/source/ui/shells/drformsh.cxx
@@ -113,7 +113,7 @@ void SwDrawFormShell::Execute(SfxRequest &rReq)
uno::Reference< beans::XPropertySet > xPropSet(xControlModel, uno::UNO_QUERY);
// Darf man eine URL an dem Objekt setzen?
- OUString sTargetURL( C2U( "TargetURL" ));
+ OUString sTargetURL( "TargetURL" );
uno::Reference< beans::XPropertySetInfo > xPropInfoSet = xPropSet->getPropertySetInfo();
if( xPropInfoSet->hasPropertyByName( sTargetURL ))
{
@@ -122,7 +122,7 @@ void SwDrawFormShell::Execute(SfxRequest &rReq)
{
uno::Any aTmp;
// Ja!
- ::rtl::OUString sLabel(C2U("Label"));
+ ::rtl::OUString sLabel("Label");
if( xPropInfoSet->hasPropertyByName(sLabel) )
{
aTmp <<= OUString(rHLinkItem.GetName());
@@ -139,13 +139,13 @@ void SwDrawFormShell::Execute(SfxRequest &rReq)
if( rHLinkItem.GetTargetFrame().Len() )
{
aTmp <<= OUString(rHLinkItem.GetTargetFrame());
- xPropSet->setPropertyValue( C2U("TargetFrame"), aTmp );
+ xPropSet->setPropertyValue( "TargetFrame", aTmp );
}
form::FormButtonType eButtonType = form::FormButtonType_URL;
aTmp.setValue( &eButtonType, ::getCppuType((const form::FormButtonType*)0));
- xPropSet->setPropertyValue( C2U("ButtonType"), aTmp );
+ xPropSet->setPropertyValue( "ButtonType", aTmp );
}
}
}
@@ -191,16 +191,16 @@ void SwDrawFormShell::GetState(SfxItemSet& rSet)
uno::Any aTmp;
uno::Reference< beans::XPropertySetInfo > xInfo = xPropSet->getPropertySetInfo();
- if(xInfo->hasPropertyByName(C2U("ButtonType" )))
+ if(xInfo->hasPropertyByName( "ButtonType" ))
{
form::FormButtonType eButtonType = form::FormButtonType_URL;
- aTmp = xPropSet->getPropertyValue( C2U("ButtonType") );
+ aTmp = xPropSet->getPropertyValue( "ButtonType" );
if( aTmp >>= eButtonType )
{
// Label
- if(xInfo->hasPropertyByName( C2U("Label") ))
+ if(xInfo->hasPropertyByName( "Label" ))
{
- aTmp = xPropSet->getPropertyValue( C2U("Label") );
+ aTmp = xPropSet->getPropertyValue( "Label" );
OUString sTmp;
if( (aTmp >>= sTmp) && !sTmp.isEmpty())
{
@@ -209,9 +209,9 @@ void SwDrawFormShell::GetState(SfxItemSet& rSet)
}
// URL
- if(xInfo->hasPropertyByName( C2U("TargetURL" )))
+ if(xInfo->hasPropertyByName( "TargetURL" ))
{
- aTmp = xPropSet->getPropertyValue( C2U("TargetURL") );
+ aTmp = xPropSet->getPropertyValue( "TargetURL" );
OUString sTmp;
if( (aTmp >>= sTmp) && !sTmp.isEmpty())
{
@@ -220,9 +220,9 @@ void SwDrawFormShell::GetState(SfxItemSet& rSet)
}
// Target
- if(xInfo->hasPropertyByName( C2U("TargetFrame") ))
+ if(xInfo->hasPropertyByName( "TargetFrame" ))
{
- aTmp = xPropSet->getPropertyValue( C2U("TargetFrame") );
+ aTmp = xPropSet->getPropertyValue( "TargetFrame" );
OUString sTmp;
if( (aTmp >>= sTmp) && !sTmp.isEmpty())
{