diff options
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/inetmime.hxx | 14 | ||||
-rw-r--r-- | include/tools/inetmsg.hxx | 10 |
2 files changed, 0 insertions, 24 deletions
diff --git a/include/tools/inetmime.hxx b/include/tools/inetmime.hxx index b791060586ee..57666605b2f0 100644 --- a/include/tools/inetmime.hxx +++ b/include/tools/inetmime.hxx @@ -717,14 +717,6 @@ public: /** Write a sequence of octets. - @param pBegin Points to the start of the sequence, must not be null. - - @param pEnd Points past the end of the sequence, must be >= pBegin. - */ - inline void write(const sal_Char * pBegin, const sal_Char * pEnd); - - /** Write a sequence of octets. - @descr The supplied sequence of Unicode characters is interpreted as a sequence of octets. It is an error if any of the elements of the sequence has a numerical value greater than 255. @@ -789,12 +781,6 @@ public: static inline INetMIMEOutputSink & endl(INetMIMEOutputSink & rSink); }; -inline void INetMIMEOutputSink::write(const sal_Char * pBegin, - const sal_Char * pEnd) -{ - writeSequence(pBegin, pEnd); - m_nColumn += pEnd - pBegin; -} inline void INetMIMEOutputSink::write(const sal_Unicode * pBegin, const sal_Unicode * pEnd) diff --git a/include/tools/inetmsg.hxx b/include/tools/inetmsg.hxx index 3bca8fa723ee..c064a0dc80eb 100644 --- a/include/tools/inetmsg.hxx +++ b/include/tools/inetmsg.hxx @@ -159,16 +159,6 @@ class TOOLS_DLLPUBLIC INetMIMEMessage void CopyImp (const INetMIMEMessage& rMsg); void SetHeaderParsed() { bHeaderParsed = true; } - OUString GetHeaderName_Impl ( - sal_uIntPtr nIndex, rtl_TextEncoding eEncoding) const - { - if ( nIndex < m_aHeaderList.size() ) { - return OStringToOUString(m_aHeaderList[ nIndex ]->GetName(), eEncoding); - } else { - return OUString(); - } - } - OUString GetHeaderValue_Impl ( sal_uIntPtr nIndex, INetMIME::HeaderFieldType eType) const { |