summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/tabvwshg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/view/tabvwshg.cxx')
-rw-r--r--sc/source/ui/view/tabvwshg.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/view/tabvwshg.cxx b/sc/source/ui/view/tabvwshg.cxx
index b477f0d1dba3..c695605abf0f 100644
--- a/sc/source/ui/view/tabvwshg.cxx
+++ b/sc/source/ui/view/tabvwshg.cxx
@@ -72,26 +72,26 @@ void ScTabViewShell::InsertURLButton( const String& rName, const String& rURL,
uno::Any aAny;
aAny <<= OUString(rName);
- xPropSet->setPropertyValue( OUString( "Label" ), aAny );
+ xPropSet->setPropertyValue("Label", aAny );
OUString aTmp = INetURLObject::GetAbsURL( pDoc->GetDocumentShell()->GetMedium()->GetBaseURL(), rURL );
aAny <<= aTmp;
- xPropSet->setPropertyValue( OUString( "TargetURL" ), aAny );
+ xPropSet->setPropertyValue("TargetURL", aAny );
if( rTarget.Len() )
{
aAny <<= OUString(rTarget);
- xPropSet->setPropertyValue( OUString( "TargetFrame" ), aAny );
+ xPropSet->setPropertyValue("TargetFrame", aAny );
}
form::FormButtonType eButtonType = form::FormButtonType_URL;
aAny <<= eButtonType;
- xPropSet->setPropertyValue( OUString( "ButtonType" ), aAny );
+ xPropSet->setPropertyValue("ButtonType", aAny );
if ( ::avmedia::MediaWindow::isMediaURL( rURL ) )
{
aAny <<= sal_True;
- xPropSet->setPropertyValue( OUString( "DispatchURLInternal" ), aAny );
+ xPropSet->setPropertyValue("DispatchURLInternal", aAny );
}
Point aPos;