summaryrefslogtreecommitdiff
path: root/sw/source/core/text/pormulti.cxx
diff options
context:
space:
mode:
authorgerhard oettl <lodev@ogersoft.at>2012-10-24 07:28:15 +0200
committerCaolán McNamara <caolanm@redhat.com>2012-10-27 15:29:25 +0000
commit96ed67aadfb4e30b9870451eb3db90fae704df01 (patch)
tree79b8f7af80d8110e2f83a00f4e3ba7c8d249fd3c /sw/source/core/text/pormulti.cxx
parent3149d338fc2d766f7e0e974ecf1993b42f32e98d (diff)
rtl::OUString to OUString clean up
unsing rtl::OUString, etc clauses had to be reinserted in sw/qa/extras/rtfexport/rtfexport.cxx to pass the test Change-Id: I3767ea89c8cfd9afe2dc8a80e5c7284be9d1cf57 Reviewed-on: https://gerrit.libreoffice.org/926 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/core/text/pormulti.cxx')
-rw-r--r--sw/source/core/text/pormulti.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/text/pormulti.cxx b/sw/source/core/text/pormulti.cxx
index 5f5ec1fecdcf..fea58effdf8c 100644
--- a/sw/source/core/text/pormulti.cxx
+++ b/sw/source/core/text/pormulti.cxx
@@ -328,14 +328,14 @@ SwDoubleLinePortion::SwDoubleLinePortion( const SwMultiCreator& rCreate,
sal_uInt8 nTmp = SW_SCRIPTS;
if( pBracket->cPre > 255 )
{
- String aTxt = rtl::OUString(pBracket->cPre);
+ String aTxt = OUString(pBracket->cPre);
nTmp = SwScriptInfo::WhichFont( 0, &aTxt, 0 );
}
pBracket->nPreScript = nTmp;
nTmp = SW_SCRIPTS;
if( pBracket->cPost > 255 )
{
- String aTxt = rtl::OUString(pBracket->cPost);
+ String aTxt = OUString(pBracket->cPost);
nTmp = SwScriptInfo::WhichFont( 0, &aTxt, 0 );
}
pBracket->nPostScript = nTmp;
@@ -428,7 +428,7 @@ void SwDoubleLinePortion::FormatBrackets( SwTxtFormatInfo &rInf, SwTwips& nMaxWi
pBracket->nHeight = 0;
if( pBracket->cPre )
{
- rtl::OUString aStr( pBracket->cPre );
+ OUString aStr( pBracket->cPre );
sal_uInt8 nActualScr = pTmpFnt->GetActual();
if( SW_SCRIPTS > pBracket->nPreScript )
pTmpFnt->SetActual( pBracket->nPreScript );
@@ -453,7 +453,7 @@ void SwDoubleLinePortion::FormatBrackets( SwTxtFormatInfo &rInf, SwTwips& nMaxWi
pBracket->nPreWidth = 0;
if( pBracket->cPost )
{
- rtl::OUString aStr( pBracket->cPost );
+ OUString aStr( pBracket->cPost );
if( SW_SCRIPTS > pBracket->nPostScript )
pTmpFnt->SetActual( pBracket->nPostScript );
SwFontSave aSave( rInf, pTmpFnt );