summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdouno.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-05-30 23:48:36 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-05-30 23:48:36 -0500
commit7ef725b8407e8230a958ead5689b641c7a17a37d (patch)
tree538bf10906c59668f87110fb063c9078726557b5 /svx/source/svdraw/svdouno.cxx
parentfa1da8256c136e697f7b02d0dfeae9cfbe583d88 (diff)
targeted string re-work
Change-Id: Id47f6b85f2516826108ea2b2be9ef6fccf1ba264
Diffstat (limited to 'svx/source/svdraw/svdouno.cxx')
-rw-r--r--svx/source/svdraw/svdouno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdouno.cxx b/svx/source/svdraw/svdouno.cxx
index bd8836343fa7..78868bc34f6d 100644
--- a/svx/source/svdraw/svdouno.cxx
+++ b/svx/source/svdraw/svdouno.cxx
@@ -254,7 +254,7 @@ void SdrUnoObj::SetContextWritingMode( const sal_Int16 _nContextWritingMode )
{
uno::Reference< beans::XPropertySet > xModelProperties( GetUnoControlModel(), uno::UNO_QUERY_THROW );
xModelProperties->setPropertyValue(
- ::rtl::OUString::intern( RTL_CONSTASCII_USTRINGPARAM( "ContextWritingMode" ) ),
+ ::rtl::OUString::intern( "ContextWritingMode" ),
uno::makeAny( _nContextWritingMode )
);
}
@@ -343,7 +343,7 @@ SdrUnoObj& SdrUnoObj::operator= (const SdrUnoObj& rObj)
uno::Reference< beans::XPropertySet > xSet(xUnoControlModel, uno::UNO_QUERY);
if (xSet.is())
{
- uno::Any aValue( xSet->getPropertyValue( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("DefaultControl"))) );
+ uno::Any aValue( xSet->getPropertyValue( rtl::OUString("DefaultControl")) );
::rtl::OUString aStr;
if( aValue >>= aStr )