summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-12 22:37:26 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-13 11:43:36 +0100
commite1ace637919e44a059e4546ada623df65334ae06 (patch)
tree24efb3e9af41fbbda808621f4320566997e45827 /tools
parent8a703cec700838702fe8e473ddda6c1c7a03c116 (diff)
WriteByteStringLines unused
Diffstat (limited to 'tools')
-rw-r--r--tools/inc/tools/stream.hxx2
-rw-r--r--tools/source/stream/stream.cxx5
2 files changed, 0 insertions, 7 deletions
diff --git a/tools/inc/tools/stream.hxx b/tools/inc/tools/stream.hxx
index 075ca946c27e..55749fac7fb3 100644
--- a/tools/inc/tools/stream.hxx
+++ b/tools/inc/tools/stream.hxx
@@ -452,8 +452,6 @@ public:
sal_Bool ReadByteStringLine( String& rStr ) { return ReadByteStringLine( rStr, GetStreamCharSet()); }
sal_Bool WriteByteStringLine( const String& rStr, rtl_TextEncoding eDestCharSet );
sal_Bool WriteByteStringLine( const String& rStr ) { return WriteByteStringLine( rStr, GetStreamCharSet()); }
- sal_Bool WriteByteStringLines( const String& rStr, rtl_TextEncoding eDestCharSet );
- sal_Bool WriteByteStringLines( const String& rStr ) { return WriteByteStringLine( rStr, GetStreamCharSet()); }
/// Switch to no endian swapping and write 0xfeff
sal_Bool StartWritingUnicodeText();
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index da77e038319c..4941e9fe79ce 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -944,11 +944,6 @@ sal_Bool SvStream::WriteUniStringLine( const String& rStr )
|*
*************************************************************************/
-sal_Bool SvStream::WriteByteStringLines( const String& rStr, rtl_TextEncoding eDestCharSet )
-{
- return WriteLines( ByteString( rStr, eDestCharSet ) );
-}
-
sal_Bool SvStream::WriteLines( const ByteString& rStr )
{
ByteString aStr( rStr );