diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-07-07 21:15:46 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-07-08 16:29:35 +0200 |
commit | 6b7bd732e28de6a7a4189cf98d2a6d8897d89d83 (patch) | |
tree | 5f9bbfd153e4748be7930658ead56bdc2cf40088 /sw | |
parent | d6f1c2c2e837f5682996d761fd4ed1367cc3bd4a (diff) |
cid#1608145 silence Unchecked return value
and
cid#1606678 Unchecked return value
cid#1607752 Unchecked return value
Change-Id: Ic611e2d9db17350a5aacbfb2b7c3f933aaea4afb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170129
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/html/htmlform.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/html/htmlform.cxx b/sw/source/filter/html/htmlform.cxx index 7e055dccea28..e9d1707cc015 100644 --- a/sw/source/filter/html/htmlform.cxx +++ b/sw/source/filter/html/htmlform.cxx @@ -1744,7 +1744,7 @@ void SwHTMLParser::InsertInput() SvxCSS1PropertyInfo aCSS1PropInfo; if( HasStyleOptions( aStyle, aId, aClass ) ) { - ParseStyleOptions( aStyle, aId, aClass, aCSS1ItemSet, aCSS1PropInfo ); + (void)ParseStyleOptions(aStyle, aId, aClass, aCSS1ItemSet, aCSS1PropInfo); if( !aId.isEmpty() ) InsertBookmark( aId ); } @@ -2004,7 +2004,7 @@ void SwHTMLParser::NewTextArea() SvxCSS1PropertyInfo aCSS1PropInfo; if( HasStyleOptions( aStyle, aId, aClass ) ) { - ParseStyleOptions( aStyle, aId, aClass, aCSS1ItemSet, aCSS1PropInfo ); + (void)ParseStyleOptions(aStyle, aId, aClass, aCSS1ItemSet, aCSS1PropInfo); if( !aId.isEmpty() ) InsertBookmark( aId ); } @@ -2271,7 +2271,7 @@ void SwHTMLParser::NewSelect() SvxCSS1PropertyInfo aCSS1PropInfo; if( HasStyleOptions( aStyle, aId, aClass ) ) { - ParseStyleOptions( aStyle, aId, aClass, aCSS1ItemSet, aCSS1PropInfo ); + (void)ParseStyleOptions(aStyle, aId, aClass, aCSS1ItemSet, aCSS1PropInfo); if( !aId.isEmpty() ) InsertBookmark( aId ); } |