summaryrefslogtreecommitdiff
path: root/include/tools/inetmime.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-09-17 15:30:26 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-09-17 16:57:37 +0200
commitade5624f31233ce2369660f44d8f62bb4e8a6aea (patch)
tree7dd4597c3bd978d55559bdeccecab45a39ccda88 /include/tools/inetmime.hxx
parentbfff96fec8735d62c6655f1f423a3eefb2306ef9 (diff)
All INetMIMEOutputSink instances use same fixed ctor arg values
Change-Id: I49126732be307b80270843c147d9cce4b3fdd2a3
Diffstat (limited to 'include/tools/inetmime.hxx')
-rw-r--r--include/tools/inetmime.hxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/tools/inetmime.hxx b/include/tools/inetmime.hxx
index 657fc490dcf7..e0c37c74dc96 100644
--- a/include/tools/inetmime.hxx
+++ b/include/tools/inetmime.hxx
@@ -88,8 +88,6 @@ typedef std::unordered_map<OString, INetContentTypeParameter, OStringHash>
class TOOLS_DLLPUBLIC INetMIME
{
public:
- enum { SOFT_LINE_LENGTH_LIMIT = 76 };
-
/** The various types of message header field bodies, with respect to
encoding and decoding them.
@@ -666,10 +664,8 @@ private:
const sal_Unicode * pEnd);
public:
- INetMIMEOutputSink(
- sal_uInt32 nTheColumn = 0,
- sal_uInt32 nTheLineLengthLimit= INetMIME::SOFT_LINE_LENGTH_LIMIT):
- m_nColumn(nTheColumn), m_nLineLengthLimit(nTheLineLengthLimit) {}
+ INetMIMEOutputSink():
+ m_nColumn(0), m_nLineLengthLimit(NO_LINE_LENGTH_LIMIT) {}
/** Get the current column.