summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-07 15:03:59 +0200
committerNoel Grandin <noel@peralex.com>2013-10-08 10:03:15 +0200
commit77d8f7342b8cd6a625989c5d8cba0578951e1017 (patch)
treed1c15effe9a83060040aae6fff6f23a4e8ba1bfc /sc
parent61d3417d75c47e0522e4ebe994cee3f8f76d622b (diff)
convert sc/source/filter/starcalc/*.cxx from String to OUString
Change-Id: Id941becbf97235f5142375a63477f71a7e1f01e1
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/starcalc/scflt.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/source/filter/starcalc/scflt.cxx b/sc/source/filter/starcalc/scflt.cxx
index 64287b9c7530..8e7e3e06f7a1 100644
--- a/sc/source/filter/starcalc/scflt.cxx
+++ b/sc/source/filter/starcalc/scflt.cxx
@@ -72,7 +72,7 @@ using namespace com::sun::star;
#define DEFCHARSET RTL_TEXTENCODING_MS_1252
-#define SC10TOSTRING(p) String((p),DEFCHARSET)
+#define SC10TOSTRING(p) OUString((p), strlen(p), DEFCHARSET)
const SCCOL SC10MAXCOL = 255; // #i85906# don't try to load more columns than there are in the file
@@ -377,7 +377,7 @@ static void lcl_ChangeColor( sal_uInt16 nIndex, Color& rColor )
rColor.SetColor( aCol );
}
-static String lcl_MakeOldPageStyleFormatName( sal_uInt16 i )
+static OUString lcl_MakeOldPageStyleFormatName( sal_uInt16 i )
{
OUString aName = ScGlobal::GetRscString( STR_PAGESTYLE ) + " " + OUString::number( i + 1 );
return aName;
@@ -712,7 +712,7 @@ void Sc10PageCollection::PutToDoc( ScDocument* pDoc )
pPage->Head = (short) ( pPage->Head * ( PS_POINTS_PER_INCH / POINTS_PER_INCH ) + 0.5 );
pPage->Foot = (short) ( pPage->Foot * ( PS_POINTS_PER_INCH / POINTS_PER_INCH ) + 0.5 );
- String aName = lcl_MakeOldPageStyleFormatName( i );
+ OUString aName = lcl_MakeOldPageStyleFormatName( i );
ScStyleSheet* pSheet = (ScStyleSheet*) &pStylePool->Make( aName,
SFX_STYLE_FAMILY_PAGE,
@@ -758,9 +758,9 @@ void Sc10PageCollection::PutToDoc( ScDocument* pDoc )
aEditAttribs.Put(SvxUnderlineItem(UNDERLINE_SINGLE, EE_CHAR_UNDERLINE), EE_CHAR_UNDERLINE);
if (pHeadFootLine->LogFont.lfStrikeOut != 0)
aEditAttribs.Put(SvxCrossedOutItem(STRIKEOUT_SINGLE, EE_CHAR_STRIKEOUT), EE_CHAR_STRIKEOUT);
- String aText( pHeadFootLine->Title, DEFCHARSET );
+ OUString aText( pHeadFootLine->Title, strlen(pHeadFootLine->Title), DEFCHARSET );
aEditEngine.SetText( aText );
- aEditEngine.QuickSetAttribs( aEditAttribs, ESelection( 0, 0, 0, aText.Len() ) );
+ aEditEngine.QuickSetAttribs( aEditAttribs, ESelection( 0, 0, 0, aText.getLength() ) );
EditTextObject* pObject = aEditEngine.CreateTextObject();
ScPageHFItem aHeaderItem(nHeadFoot ? ATTR_PAGE_FOOTERRIGHT : ATTR_PAGE_HEADERRIGHT);
@@ -1153,7 +1153,7 @@ void Sc10Import::LoadPatternCollection()
for( sal_uInt16 i = 0 ; i < pPatternCollection->GetCount() ; i++ )
{
Sc10PatternData* pPattern = pPatternCollection->At( i );
- String aName( pPattern->Name, DEFCHARSET );
+ OUString aName( pPattern->Name, strlen(pPattern->Name), DEFCHARSET );
SfxStyleSheetBase* pStyle = pStylePool->Find( aName, SFX_STYLE_FAMILY_PARA );
if( pStyle == NULL )
pStylePool->Make( aName, SFX_STYLE_FAMILY_PARA );
@@ -1425,7 +1425,7 @@ void Sc10Import::LoadTables()
lcl_ReadPageFormat(rStream, PageFormat);
sal_uInt16 nAt = aPageCollection.InsertFormat(PageFormat);
- String aPageName = lcl_MakeOldPageStyleFormatName( nAt );
+ OUString aPageName = lcl_MakeOldPageStyleFormatName( nAt );
pPrgrsBar->Progress();
@@ -1689,7 +1689,7 @@ void Sc10Import::LoadCol(SCCOL Col, SCTAB Tab)
sal_Char* pNote = new sal_Char[NoteLen+1];
rStream.Read(pNote, NoteLen);
pNote[NoteLen] = 0;
- String aNoteText( SC10TOSTRING(pNote));
+ OUString aNoteText( SC10TOSTRING(pNote));
delete [] pNote;
ScAddress aPos( Col, static_cast<SCROW>(Row), Tab );
ScNoteUtil::CreateNoteFromString( *pDoc, aPos, aNoteText, false, false );