summaryrefslogtreecommitdiff
path: root/sw/source/core/text/porexp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/text/porexp.cxx')
-rw-r--r--sw/source/core/text/porexp.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/text/porexp.cxx b/sw/source/core/text/porexp.cxx
index 3624ec042d0e..0bb0f7d158e0 100644
--- a/sw/source/core/text/porexp.cxx
+++ b/sw/source/core/text/porexp.cxx
@@ -156,7 +156,7 @@ MSHORT SwBlankPortion::MayUnderFlow( const SwTxtFormatInfo &rInf,
xub_StrLen nBlank = nIdx;
while( --nBlank > rInf.GetLineStart() )
{
- const xub_Unicode cCh = rInf.GetChar( nBlank );
+ const sal_Unicode cCh = rInf.GetChar( nBlank );
if( CH_BLANK == cCh ||
(( CH_TXTATR_BREAKWORD == cCh || CH_TXTATR_INWORD == cCh )
&& rInf.HasHint( nBlank ) ) )
@@ -166,7 +166,7 @@ MSHORT SwBlankPortion::MayUnderFlow( const SwTxtFormatInfo &rInf,
return 0;
}
}
- xub_Unicode cCh;
+ sal_Unicode cCh;
if( nIdx < 2 || CH_BLANK == (cCh = rInf.GetChar( nIdx - 1 )) )
return 1;
if( CH_BREAK == cCh )
@@ -243,7 +243,7 @@ sal_Bool SwBlankPortion::GetExpTxt( const SwTxtSizeInfo&, XubString &rTxt ) cons
void SwBlankPortion::HandlePortion( SwPortionHandler& rPH ) const
{
- rtl::OUString aString( cChar );
+ OUString aString( cChar );
rPH.Special( GetLen(), aString, GetWhichPor() );
}