diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-10 22:12:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-11 09:05:06 +0100 |
commit | 6575317bf6503cc9c92d40ef119924533586ed1f (patch) | |
tree | 9f2310005fc76cdfd1515efe175df145fa58ac11 /tools | |
parent | 2aa6ecdc65e972c53849d96510e1459847911fbe (diff) |
callcatcher: remove unused WriteUniStringLines
Diffstat (limited to 'tools')
-rw-r--r-- | tools/inc/tools/stream.hxx | 2 | ||||
-rw-r--r-- | tools/source/stream/stream.cxx | 8 |
2 files changed, 0 insertions, 10 deletions
diff --git a/tools/inc/tools/stream.hxx b/tools/inc/tools/stream.hxx index fc1a96c2285f..ed013eedfa11 100644 --- a/tools/inc/tools/stream.hxx +++ b/tools/inc/tools/stream.hxx @@ -446,8 +446,6 @@ public: { return WriteUnicodeOrByteText( rStr, GetStreamCharSet() ); } /// Write a line of Unicode and append line end (endlu()) sal_Bool WriteUniStringLine( const String& rStr ); - /// Write multiple lines of Unicode (with CovertLineEnd) and append line end (endlu()) - sal_Bool WriteUniStringLines( const String& rStr ); /// Write a Unicode character if eDestCharSet==RTL_TEXTENCODING_UNICODE, /// otherwise write as Bytecode converted to eDestCharSet. diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx index 0cd38bf90365..4186876fd4a0 100644 --- a/tools/source/stream/stream.cxx +++ b/tools/source/stream/stream.cxx @@ -949,14 +949,6 @@ sal_Bool SvStream::WriteLines( const ByteString& rStr ) return (sal_Bool)(nError == SVSTREAM_OK); } -sal_Bool SvStream::WriteUniStringLines( const String& rStr ) -{ - String aStr( rStr ); - aStr.ConvertLineEnd( eLineDelimiter ); - WriteUniStringLine( aStr ); - return nError == SVSTREAM_OK; -} - /************************************************************************* |* |* Stream::WriteUniOrByteChar() |