summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbatitle.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/vba/vbatitle.hxx')
-rw-r--r--sc/source/ui/vba/vbatitle.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/vba/vbatitle.hxx b/sc/source/ui/vba/vbatitle.hxx
index 3f4d105c3808..e4fbd1fcc08a 100644
--- a/sc/source/ui/vba/vbatitle.hxx
+++ b/sc/source/ui/vba/vbatitle.hxx
@@ -68,7 +68,7 @@ public:
{
try
{
- xShapePropertySet->setPropertyValue( OUString("String"), css::uno::makeAny( Text ));
+ xShapePropertySet->setPropertyValue("String", css::uno::makeAny( Text ));
}
catch ( css::uno::Exception& )
{
@@ -80,7 +80,7 @@ public:
OUString sText;
try
{
- xShapePropertySet->getPropertyValue( OUString("String") ) >>= sText;
+ xShapePropertySet->getPropertyValue("String") >>= sText;
}
catch ( css::uno::Exception& )
{
@@ -117,7 +117,7 @@ public:
{
try
{
- xShapePropertySet->setPropertyValue(OUString("TextRotation"), css::uno::makeAny(_nOrientation*100));
+ xShapePropertySet->setPropertyValue("TextRotation", css::uno::makeAny(_nOrientation*100));
}
catch (css::uno::Exception& )
{
@@ -129,7 +129,7 @@ public:
sal_Int32 nSOOrientation = 0;
try
{
- xShapePropertySet->getPropertyValue( OUString("TextRotation")) >>= nSOOrientation;
+ xShapePropertySet->getPropertyValue("TextRotation") >>= nSOOrientation;
}
catch (css::uno::Exception& )
{