summaryrefslogtreecommitdiff
path: root/include/tools/inetmime.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/tools/inetmime.hxx')
-rw-r--r--include/tools/inetmime.hxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/tools/inetmime.hxx b/include/tools/inetmime.hxx
index 106e5614d2fe..72dee0b69bd4 100644
--- a/include/tools/inetmime.hxx
+++ b/include/tools/inetmime.hxx
@@ -256,17 +256,6 @@ private:
const sal_Unicode * pEnd);
public:
- /** 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.
-
- @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_Unicode * pBegin, const sal_Unicode * pEnd);
/** Write a single octet.
@@ -293,12 +282,6 @@ public:
};
-inline void INetMIMEOutputSink::write(const sal_Unicode * pBegin,
- const sal_Unicode * pEnd)
-{
- writeSequence(pBegin, pEnd);
-}
-
inline INetMIMEOutputSink & INetMIMEOutputSink::operator <<(sal_Char nOctet)
{
writeSequence(&nOctet, &nOctet + 1);