summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-25 14:45:38 +0200
committerNoel Grandin <noel@peralex.com>2015-11-26 13:26:25 +0200
commitabc6071b7a8af354a56c91e4caecd8afc79f55cc (patch)
treeff8b64d3763a6192f8c67e750e830d7f3a6b13bf /tools
parent7c2edb3a67cf2e156f2134dc8f56fb6aac3045e2 (diff)
loplugin:unusedfields various
Change-Id: I18f94269a1172cf195ee402384f7144610e1e82d
Diffstat (limited to 'tools')
-rw-r--r--tools/source/inet/inetmime.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/source/inet/inetmime.cxx b/tools/source/inet/inetmime.cxx
index 6ed448d1500d..f4bc930e277c 100644
--- a/tools/source/inet/inetmime.cxx
+++ b/tools/source/inet/inetmime.cxx
@@ -467,14 +467,12 @@ struct Parameter
Parameter * m_pNext;
OString m_aAttribute;
OString m_aCharset;
- OString m_aLanguage;
OString m_aValue;
sal_uInt32 m_nSection;
bool m_bExtended;
inline Parameter(Parameter * pTheNext, const OString& rTheAttribute,
const OString& rTheCharset,
- const OString& rTheLanguage,
const OString& rTheValue, sal_uInt32 nTheSection,
bool bTheExtended);
};
@@ -482,13 +480,11 @@ struct Parameter
inline Parameter::Parameter(Parameter * pTheNext,
const OString& rTheAttribute,
const OString& rTheCharset,
- const OString& rTheLanguage,
const OString& rTheValue,
sal_uInt32 nTheSection, bool bTheExtended):
m_pNext(pTheNext),
m_aAttribute(rTheAttribute),
m_aCharset(rTheCharset),
- m_aLanguage(rTheLanguage),
m_aValue(rTheValue),
m_nSection(nTheSection),
m_bExtended(bTheExtended)
@@ -2001,7 +1997,7 @@ sal_Unicode const * scanParameters(sal_Unicode const * pBegin,
RTL_TEXTENCODING_UTF8);
}
- *pPos = new Parameter(*pPos, aAttribute, aCharset, aLanguage, aValue,
+ *pPos = new Parameter(*pPos, aAttribute, aCharset, aValue,
nSection, bExtended);
}
return parseParameters(aList, pParameters) ? pParameterBegin : pBegin;