svx/source/svdraw/svdouno.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit a50254968b3b0ba93204c4b80aeda89314c391c5 Author: Fridrich Å trba <[email protected]> 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 ) ); }
_______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
