summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-11 08:22:44 +0200
committerNoel Grandin <noel@peralex.com>2014-12-11 14:57:34 +0200
commitcf01aff0027f3254ec1f4519447086fc76cbba3b (patch)
treeeeb96cfb56f2a47aa783e576106bb1e5b47e1f6d /tools
parent70d4989c2726e2b640e725be7e7e923c4047b627 (diff)
remove operator>> and operator<< methods
in favour of ReadXXX/WriteXXX methods Change-Id: I39dfeee92e5b01fdf43db3bbee0f2fc471017653
Diffstat (limited to 'tools')
-rw-r--r--tools/source/inet/inetmime.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/source/inet/inetmime.cxx b/tools/source/inet/inetmime.cxx
index 1772e0f7c317..f39bc6228e77 100644
--- a/tools/source/inet/inetmime.cxx
+++ b/tools/source/inet/inetmime.cxx
@@ -1712,7 +1712,7 @@ void INetMIME::writeHeaderFieldBody(INetMIMEOutputSink & rSink,
if (++pBodyPtr == pBodyEnd)
break;
default:
- aOutput << *pBodyPtr++;
+ aOutput.WriteUInt32( *pBodyPtr++ );
break;
}
comment_done:
@@ -2334,16 +2334,16 @@ void INetMIME::writeHeaderFieldBody(INetMIMEOutputSink & rSink,
case '\\':
if (++pStart != pBodyPtr)
- aOutput << *pStart++;
+ aOutput.WriteUInt32( *pStart++ );
break;
case '\x0D': // CR
pStart += 2;
- aOutput << *pStart++;
+ aOutput.WriteUInt32( *pStart++ );
break;
default:
- aOutput << *pStart++;
+ aOutput.WriteUInt32( *pStart++ );
break;
}
bInitialSpace = aOutput.flush();
@@ -3520,7 +3520,7 @@ INetMIMEEncodedWordOutputSink::~INetMIMEEncodedWordOutputSink()
}
INetMIMEEncodedWordOutputSink &
-INetMIMEEncodedWordOutputSink::operator <<(sal_uInt32 nChar)
+INetMIMEEncodedWordOutputSink::WriteUInt32(sal_uInt32 nChar)
{
if (nChar == ' ')
{