summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2012-05-31 08:11:08 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2012-05-31 08:11:08 +0200
commita50254968b3b0ba93204c4b80aeda89314c391c5 (patch)
treeb363a8492f48ca0a7d6d9a188fd388bd901e7b08 /svx
parent2c89a7cbe4d0729eb4ea9b0d440258e852a3169b (diff)
rtl::OUString::intern( blabla ) -> rtl::OUString( blabla )
Change-Id: Ic114483f4fea528eaf9cd1f8eeb561693feb0664
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdouno.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdouno.cxx b/svx/source/svdraw/svdouno.cxx
index 78868bc34f6d..d77c64c69d70 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( "ContextWritingMode" ),
+ ::rtl::OUString( "ContextWritingMode" ),
uno::makeAny( _nContextWritingMode )
);
}