summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-05-16 10:05:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-05-17 08:39:51 +0200
commit9ffdf7adc00d8e9d931184d3008f4e505e4a5024 (patch)
tree8b75090145b4218578e42461693fd73d66edb3b0 /tools
parentae39b1ef2dcc9ef7784ff002dd10318564931c2b (diff)
loplugin:unusedfields in tools..xmlhelp
Change-Id: I5e909a8def86ce9ad150440e6c6ad304e855cc69 Reviewed-on: https://gerrit.libreoffice.org/54415 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools')
-rw-r--r--tools/source/reversemap/bestreversemap.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/source/reversemap/bestreversemap.cxx b/tools/source/reversemap/bestreversemap.cxx
index a03711abbdfc..4650d21781c6 100644
--- a/tools/source/reversemap/bestreversemap.cxx
+++ b/tools/source/reversemap/bestreversemap.cxx
@@ -17,14 +17,12 @@ struct Encoder
{
rtl_UnicodeToTextConverter m_aConverter;
bool m_bCapable;
- rtl_TextEncoding m_nEncoding;
const char *m_pEncoding;
Encoder(rtl_TextEncoding nEncoding, const char *pEncoding)
: m_bCapable(true)
- , m_nEncoding(nEncoding)
, m_pEncoding(pEncoding)
{
- m_aConverter = rtl_createUnicodeToTextConverter(m_nEncoding);
+ m_aConverter = rtl_createUnicodeToTextConverter(nEncoding);
}
~Encoder()
{