diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-21 16:18:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-25 15:16:58 +0200 |
commit | d8f90e02a426b7aafa24450993e5f4b97f59b8a4 (patch) | |
tree | a0b94810dac5dc1ecaacce9b3175f23b50912a28 /tools | |
parent | a8a356024474803864bf32032c0b530dc28d2294 (diff) |
remove unused code SvStream::WriteUCharPtr(unsigned char const*)
Change-Id: I7f341a10d2fffb8eda45478756bc221127ab72cf
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/stream/stream.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx index acd48dd1e653..476f1a86f1dd 100644 --- a/tools/source/stream/stream.cxx +++ b/tools/source/stream/stream.cxx @@ -1221,12 +1221,6 @@ SvStream& SvStream::WriteCharPtr( const char* pBuf ) return *this; } -SvStream& SvStream::WriteUCharPtr( const unsigned char* pBuf ) -{ - Write( (char*)pBuf, strlen( (char*)pBuf ) ); - return *this; -} - SvStream& SvStream::WriteStream( SvStream& rStream ) { const sal_uInt32 cBufLen = 0x8000; |