diff options
author | Gustavo Buzzatti Pacheco <gbpacheco@gmail.com> | 2011-12-23 10:25:18 -0200 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2011-12-23 22:04:44 +0400 |
commit | b575f4b1a2a2217282cddc995951b350936b47b1 (patch) | |
tree | a4ac2423d77240f427383b6850a796123b956a24 /dtrans | |
parent | c84a5ec4cb81eddb8bb382a6494c28df5131cb85 (diff) |
Fix for fdo43460 Part XIV getLength() to isEmpty()
Part XIV
Modules
drawinglayer, dtrans, editeng
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/cnttype/mcnttype.cxx | 18 | ||||
-rw-r--r-- | dtrans/source/test/test_dtrans.cxx | 2 |
2 files changed, 10 insertions, 10 deletions
diff --git a/dtrans/source/cnttype/mcnttype.cxx b/dtrans/source/cnttype/mcnttype.cxx index 66d737615d41..52fdbe6e4dfb 100644 --- a/dtrans/source/cnttype/mcnttype.cxx +++ b/dtrans/source/cnttype/mcnttype.cxx @@ -140,7 +140,7 @@ OUString SAL_CALL CMimeContentType::getParameterValue( const OUString& aName ) t void SAL_CALL CMimeContentType::init( const OUString& aCntType ) throw( IllegalArgumentException ) { - if ( !aCntType.getLength( ) ) + if ( aCntType.isEmpty( ) ) throw IllegalArgumentException( ); m_nPos = 0; @@ -200,7 +200,7 @@ void SAL_CALL CMimeContentType::type( void ) throw IllegalArgumentException( ); // parse - while( m_nxtSym.getLength( ) ) + while( !m_nxtSym.isEmpty( ) ) { if ( isInRange( m_nxtSym, TOKEN ) ) m_MediaType += m_nxtSym; @@ -230,7 +230,7 @@ void SAL_CALL CMimeContentType::subtype( void ) if ( !isInRange( m_nxtSym, TOKEN ) ) throw IllegalArgumentException( ); - while( m_nxtSym.getLength( ) ) + while( !m_nxtSym.isEmpty( ) ) { if ( isInRange( m_nxtSym, TOKEN ) ) m_MediaSubtype += m_nxtSym; @@ -252,7 +252,7 @@ void SAL_CALL CMimeContentType::subtype( void ) void SAL_CALL CMimeContentType::trailer( void ) { - while( m_nxtSym.getLength( ) ) + while( !m_nxtSym.isEmpty( ) ) { if ( m_nxtSym == OUString(RTL_CONSTASCII_USTRINGPARAM("(")) ) { @@ -298,7 +298,7 @@ OUString SAL_CALL CMimeContentType::pName( ) { OUString pname; - while( m_nxtSym.getLength( ) ) + while( !m_nxtSym.isEmpty( ) ) { if ( isInRange( m_nxtSym, TOKEN ) ) pname += m_nxtSym; @@ -332,7 +332,7 @@ OUString SAL_CALL CMimeContentType::pValue( ) // remove the last quote-sign pvalue = pvalue.copy(0, pvalue.getLength() - 1); - if ( !pvalue.getLength( ) ) + if ( pvalue.isEmpty( ) ) throw IllegalArgumentException( ); } else if ( isInRange( m_nxtSym, TOKEN ) ) // unquoted pvalue @@ -356,7 +356,7 @@ OUString SAL_CALL CMimeContentType::quotedPValue( ) OUString pvalue; sal_Bool bAfterQuoteSign = sal_False; - while ( m_nxtSym.getLength( ) ) + while ( !m_nxtSym.isEmpty( ) ) { if ( bAfterQuoteSign && ((m_nxtSym == SPACE)||(m_nxtSym == SEMICOLON) ) ) break; @@ -384,7 +384,7 @@ OUString SAL_CALL CMimeContentType::nonquotedPValue( ) { OUString pvalue; - while ( m_nxtSym.getLength( ) ) + while ( !m_nxtSym.isEmpty( ) ) { if ( isInRange( m_nxtSym, TOKEN ) ) pvalue += m_nxtSym; @@ -404,7 +404,7 @@ OUString SAL_CALL CMimeContentType::nonquotedPValue( ) void SAL_CALL CMimeContentType::comment( void ) { - while ( m_nxtSym.getLength( ) ) + while ( !m_nxtSym.isEmpty( ) ) { if ( isInRange( m_nxtSym, TOKEN + SPACE ) ) getSym( ); diff --git a/dtrans/source/test/test_dtrans.cxx b/dtrans/source/test/test_dtrans.cxx index 802236d86975..4b53d8db4e3e 100644 --- a/dtrans/source/test/test_dtrans.cxx +++ b/dtrans/source/test/test_dtrans.cxx @@ -337,7 +337,7 @@ int SAL_CALL main( int argc, const char* argv[] ) } } - if( aRegistry.getLength() == 0 ) + if( aRegistry.isEmpty( ) ) fprintf( stderr, "Usage: %s -r full-path-to-applicat.rdb\n", app ); //------------------------------------------------------------------ |