diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-21 09:51:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-21 12:04:47 +0100 |
commit | 6ed5464a69de171a479e3c042b236bbd64554ba1 (patch) | |
tree | 75bf89491aed1db7f06612a4c5c6faad620f5fff /xmlhelp | |
parent | 5febdea1d1e5b6930463ca658ad3f080955fc9f2 (diff) |
loplugin:unusedfields in xmlhelp,xmlsecurity
Change-Id: Id3858365a54e6ae96bf9e6c3e27a777441ab56ae
Reviewed-on: https://gerrit.libreoffice.org/68133
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.cxx | 2 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.hxx | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx index a0f0c94a434d..10970e8c50e6 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx @@ -486,7 +486,7 @@ bool URLParameter::query() if( parameter == "Language" ) m_aLanguage = value; else if( parameter == "Device" ) - m_aDevice = value; + ; else if( parameter == "Program" ) m_aProgram = value; else if( parameter == "Eid" ) diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.hxx b/xmlhelp/source/cxxhelp/provider/urlparameter.hxx index ff917d6def08..5fe4627fcaa1 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.hxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.hxx @@ -184,7 +184,6 @@ namespace chelp { OUString m_aLanguage; OUString m_aPrefix; - OUString m_aDevice; OUString m_aProgram; OUString m_aSystem; OUString m_aActive; |