[Libreoffice-commits] .: svx/source
Fridrich Strba
fridrich at kemper.freedesktop.org
Wed May 30 23:11:23 PDT 2012
svx/source/svdraw/svdouno.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit a50254968b3b0ba93204c4b80aeda89314c391c5
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date: Thu May 31 08:11:08 2012 +0200
rtl::OUString::intern( blabla ) -> rtl::OUString( blabla )
Change-Id: Ic114483f4fea528eaf9cd1f8eeb561693feb0664
diff --git a/svx/source/svdraw/svdouno.cxx b/svx/source/svdraw/svdouno.cxx
index 78868bc..d77c64c 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 )
);
}
More information about the Libreoffice-commits
mailing list