diff options
author | Marcos Paulo de Souza <marcos.souza.org@gmail.com> | 2013-05-02 08:22:00 -0300 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-05-09 09:49:15 +0000 |
commit | 86b73eeef4350f0bf29c8ff3c71abb86fc1f6572 (patch) | |
tree | 12d4f449ef82eaa27cef064a7d2aee95d5588bb0 /vcl | |
parent | 596c3b459d2e1976ac4ac4e10f152c6353e79e36 (diff) |
fdo#63154: Remove _CL and _LF from solar.h
And use RTL_CHAR_{CR,LF} from rtl/string.h
Conflicts:
vcl/source/app/dbggui.cxx
Change-Id: I05b0325006845e48eb5483485a9042aa7b0cd22a
Reviewed-on: https://gerrit.libreoffice.org/3740
Reviewed-by: Andras Timar <atimar@suse.com>
Tested-by: Andras Timar <atimar@suse.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/dbggui.cxx | 6 | ||||
-rw-r--r-- | vcl/source/control/edit.cxx | 4 | ||||
-rw-r--r-- | vcl/source/gdi/outdev3.cxx | 12 | ||||
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.cxx | 2 | ||||
-rw-r--r-- | vcl/source/window/status.cxx | 2 |
5 files changed, 13 insertions, 13 deletions
diff --git a/vcl/source/app/dbggui.cxx b/vcl/source/app/dbggui.cxx index a61cdea25004..118018024aaa 100644 --- a/vcl/source/app/dbggui.cxx +++ b/vcl/source/app/dbggui.cxx @@ -618,7 +618,7 @@ long DbgWindow::PreNotify( NotifyEvent& rNEvt ) void DbgWindow::InsertLine( const OUString& rLine ) { OUString aStr = convertLineEnd(rLine, LINEEND_LF); - sal_Int32 nPos = aStr.indexOf( _LF ); + sal_Int32 nPos = aStr.indexOf( '\n' ); bool bFirstEntry = true; while ( nPos != -1 ) { @@ -631,7 +631,7 @@ void DbgWindow::InsertLine( const OUString& rLine ) bFirstEntry = false; aStr = aStr.replaceAt( 0, nPos+1, "" ); - nPos = aStr.indexOf( _LF ); + nPos = aStr.indexOf( '\n' ); } if ( maLstBox.GetEntryCount() >= DBGWIN_MAXLINES ) maLstBox.RemoveEntry( 0 ); @@ -1144,7 +1144,7 @@ void DbgInfoDialog::SetInfoText( const OUString& rStr ) sal_Int32 nFoundIndex; do { - nFoundIndex = aStr.indexOf( _LF, nStrIndex ); + nFoundIndex = aStr.indexOf( '\n', nStrIndex ); OUString aTextParagraph = aStr.copy( nStrIndex, nFoundIndex-nStrIndex ); if ( mbHelpText ) { diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx index db4406019e3c..69d9e17b9d44 100644 --- a/vcl/source/control/edit.cxx +++ b/vcl/source/control/edit.cxx @@ -809,8 +809,8 @@ void Edit::ImplDelete( const Selection& rSelection, sal_uInt8 nDirection, sal_uI OUString Edit::ImplGetValidString( const OUString& rString ) const { OUString aValidString( rString ); - aValidString = comphelper::string::remove(aValidString, _LF); - aValidString = comphelper::string::remove(aValidString, _CR); + aValidString = comphelper::string::remove(aValidString, '\n'); + aValidString = comphelper::string::remove(aValidString, '\r'); aValidString = aValidString.replace('\t', ' '); return aValidString; } diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx index ffd140cc56f3..573b472eb9cf 100644 --- a/vcl/source/gdi/outdev3.cxx +++ b/vcl/source/gdi/outdev3.cxx @@ -4710,7 +4710,7 @@ long OutputDevice::ImplGetTextLines( ImplMultiTextLineInfo& rLineInfo, { sal_Int32 nBreakPos = nPos; - while ( ( nBreakPos < nLen ) && ( rStr[ nBreakPos ] != _CR ) && ( rStr[ nBreakPos ] != _LF ) ) + while ( ( nBreakPos < nLen ) && ( rStr[ nBreakPos ] != '\r' ) && ( rStr[ nBreakPos ] != '\n' ) ) nBreakPos++; long nLineWidth = _rLayout.GetTextWidth( rStr, nPos, nBreakPos-nPos ); @@ -4859,11 +4859,11 @@ long OutputDevice::ImplGetTextLines( ImplMultiTextLineInfo& rLineInfo, nBreakPos++; nPos = nBreakPos; - if ( ( rStr[ nPos ] == _CR ) || ( rStr[ nPos ] == _LF ) ) + if ( ( rStr[ nPos ] == '\r' ) || ( rStr[ nPos ] == '\n' ) ) { nPos++; // CR/LF? - if ( ( nPos < nLen ) && ( rStr[ nPos ] == _LF ) && ( rStr[ nPos-1 ] == _CR ) ) + if ( ( nPos < nLen ) && ( rStr[ nPos ] == '\n' ) && ( rStr[ nPos-1 ] == '\r' ) ) nPos++; } } @@ -4873,8 +4873,8 @@ long OutputDevice::ImplGetTextLines( ImplMultiTextLineInfo& rLineInfo, { ImplTextLineInfo* pLine = rLineInfo.GetLine( nL ); String aLine( rStr, pLine->GetIndex(), pLine->GetLen() ); - DBG_ASSERT( aLine.Search( _CR ) == STRING_NOTFOUND, "ImplGetTextLines - Found CR!" ); - DBG_ASSERT( aLine.Search( _LF ) == STRING_NOTFOUND, "ImplGetTextLines - Found LF!" ); + DBG_ASSERT( aLine.Search( '\r' ) == STRING_NOTFOUND, "ImplGetTextLines - Found CR!" ); + DBG_ASSERT( aLine.Search( '\n' ) == STRING_NOTFOUND, "ImplGetTextLines - Found LF!" ); } #endif @@ -6253,7 +6253,7 @@ void OutputDevice::ImplDrawText( OutputDevice& rTargetDevice, const Rectangle& r xub_StrLen nLastLineLen = aLastLine.Len(); for ( i = 0; i < nLastLineLen; i++ ) { - if ( aLastLine.GetChar( i ) == _LF ) + if ( aLastLine.GetChar( i ) == '\n' ) aLastLine.SetChar( i, ' ' ); } aLastLine = ImplGetEllipsisString( rTargetDevice, aLastLine, nWidth, nStyle, _rLayout ); diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx index 6eefa3c1b5f7..20e6a5b8474e 100644 --- a/vcl/source/gdi/pdfwriter_impl.cxx +++ b/vcl/source/gdi/pdfwriter_impl.cxx @@ -8134,7 +8134,7 @@ void PDFWriterImpl::drawText( const Rectangle& rRect, const String& rOrigStr, sa pLineInfo = aMultiLineInfo.GetLine( nFormatLines ); aLastLine = convertLineEnd(aStr.Copy(pLineInfo->GetIndex()), LINEEND_LF); // replace line feed by space - aLastLine = aLastLine.replace(_LF, ' '); + aLastLine = aLastLine.replace('\n', ' '); aLastLine = m_pReferenceDevice->GetEllipsisString( aLastLine, nWidth, nStyle ); nStyle &= ~(TEXT_DRAW_VCENTER | TEXT_DRAW_BOTTOM); nStyle |= TEXT_DRAW_TOP; diff --git a/vcl/source/window/status.cxx b/vcl/source/window/status.cxx index cb82af669cde..2daf441353ab 100644 --- a/vcl/source/window/status.cxx +++ b/vcl/source/window/status.cxx @@ -364,7 +364,7 @@ void StatusBar::ImplDrawText( sal_Bool bOffScreen, long nOldTextWidth ) { // Position ermitteln XubString aStr = GetText(); - sal_uInt16 nPos = aStr.Search( _LF ); + sal_uInt16 nPos = aStr.Search( '\n' ); if ( nPos != STRING_NOTFOUND ) aStr.Erase( nPos ); |