summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlplug.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-08-15 15:00:58 +0200
committerMichael Stahl <mstahl@redhat.com>2013-08-15 15:01:22 +0200
commit03f973ccefd07dbceaa4993206ee4f2f1296d321 (patch)
treebee85f63cfa3855497487d7bf17a2f7ee95888f1 /sw/source/filter/html/htmlplug.cxx
parenta1230334d42250f7376f0a887e5303fa218234bb (diff)
sw: fix more clang tinderbox warnings
Change-Id: Ia72a9ca955c8209c97b2138cd442fe3e9e68f227
Diffstat (limited to 'sw/source/filter/html/htmlplug.cxx')
-rw-r--r--sw/source/filter/html/htmlplug.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/sw/source/filter/html/htmlplug.cxx b/sw/source/filter/html/htmlplug.cxx
index 51efbf9dd52e..cdbb4711cbab 100644
--- a/sw/source/filter/html/htmlplug.cxx
+++ b/sw/source/filter/html/htmlplug.cxx
@@ -363,9 +363,12 @@ void SwHTMLParser::InsertEmbed()
aSpace.Height() = (long)rOption.GetNumber();
break;
case HTML_O_UNKNOWN:
- if( rOption.GetTokenString().equalsIgnoreAsciiCaseAscii( OOO_STRING_SW_HTML_O_Hidden ) )
- bHidden =
- !rOption.GetString().equalsIgnoreAsciiCaseAscii( sHTML_O_Hidden_False );
+ if (rOption.GetTokenString().equalsIgnoreAsciiCase(
+ OOO_STRING_SW_HTML_O_Hidden))
+ {
+ bHidden = !rOption.GetString().equalsIgnoreAsciiCase(
+ sHTML_O_Hidden_False);
+ }
break;
}