dr78: fix com.sun.star.io.XTextInputStream.readString implementation() when parameter bRemoveDelimiter is set to False
This commit is contained in:
@@ -171,10 +171,10 @@ OUString OTextInputStream::readLine( )
|
||||
return implReadString( aDummySeq, sal_True, sal_True );
|
||||
}
|
||||
|
||||
OUString OTextInputStream::readString( const Sequence< sal_Unicode >& Delimiters, sal_Bool )
|
||||
OUString OTextInputStream::readString( const Sequence< sal_Unicode >& Delimiters, sal_Bool bRemoveDelimiter )
|
||||
throw(IOException, RuntimeException)
|
||||
{
|
||||
return implReadString( Delimiters, sal_True, sal_False );
|
||||
return implReadString( Delimiters, bRemoveDelimiter, sal_False );
|
||||
}
|
||||
|
||||
sal_Bool OTextInputStream::isEOF()
|
||||
|
Reference in New Issue
Block a user