diff options
author | Tor Lillqvist <tml@collabora.com> | 2020-01-15 09:53:48 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2020-01-15 10:19:10 +0200 |
commit | c2ca2219ef821d87fe499ddc2f6cf9e69c8d4828 (patch) | |
tree | c5e2bb9775518ae47b0c15304c757840a392091e /sw | |
parent | dde274e70ceed15f517814ee86453837d228ffdc (diff) |
WaE: unused parameter
Change-Id: Iba0c5c6c67d54e89bd3252315d83d6b9f947acdf
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/html/htmlbas.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/source/filter/html/htmlbas.cxx b/sw/source/filter/html/htmlbas.cxx index d42f6f90a872..8071e419c80b 100644 --- a/sw/source/filter/html/htmlbas.cxx +++ b/sw/source/filter/html/htmlbas.cxx @@ -247,7 +247,9 @@ void SwHTMLParser::InsertBasicDocEvent( const OUString& aEvent, const OUString& void SwHTMLWriter::OutBasic(SwHTMLWriter & rHTMLWrt) { -#if HAVE_FEATURE_SCRIPTING +#if !HAVE_FEATURE_SCRIPTING + (void) rHTMLWrt; +#else if( !m_bCfgStarBasic ) return; |