From 8956854d8e7294b41e65d5aacbc43e11d1795711 Mon Sep 17 00:00:00 2001 From: Matteo Casalin Date: Thu, 13 Jun 2013 22:07:41 +0200 Subject: String to OUString (SfxStringItem and related) Change-Id: I390413e9ff3efee720a6423fb8695b4c655d7efa Reviewed-on: https://gerrit.libreoffice.org/4280 Reviewed-by: Noel Power Tested-by: Noel Power --- starmath/source/document.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'starmath/source/document.cxx') diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx index 52e6319e13a6..e0504c264974 100644 --- a/starmath/source/document.cxx +++ b/starmath/source/document.cxx @@ -1302,10 +1302,9 @@ void SmDocShell::GetState(SfxItemSet &rSet) } if( nCount ) { - String sList; + OUString sList; for( sal_uInt16 n = 0; n < nCount; ++n ) - ( sList += (pTmpUndoMgr->*fnGetComment)( n, ::svl::IUndoManager::TopLevel ) ) - += '\n'; + sList += (pTmpUndoMgr->*fnGetComment)( n, ::svl::IUndoManager::TopLevel ) + "\n"; SfxStringListItem aItem( nWh ); aItem.SetString( sList ); -- cgit