diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-07-22 23:34:40 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-07-23 00:12:47 +0200 |
commit | 7dff37c65e08985b80ac79e13f5571819a8e739d (patch) | |
tree | eceae160732496593b17ad3ac3e244cd14aa3235 /sw/source | |
parent | 5f0967a6345f602f787901eeff25fd61b57b780e (diff) |
fdo#81276: sw: HTML import: fix inverted test in CSS import
(regression from 5089bdb234a93bcb62b597c18b8ab66048246b13)
Change-Id: I5b45c4c47ba66385b2b528b5a3039bda37b060d6
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/html/htmlcss1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/html/htmlcss1.cxx b/sw/source/filter/html/htmlcss1.cxx index ebdcd0d09e52..100dd1ff59e0 100644 --- a/sw/source/filter/html/htmlcss1.cxx +++ b/sw/source/filter/html/htmlcss1.cxx @@ -1688,7 +1688,7 @@ void SwHTMLParser::NewStyle() sType = rOption.GetString(); } - bIgnoreRawData = !sType.getLength() && + bIgnoreRawData = sType.getLength() && !sType.getToken(0,';').equalsAscii(sCSS_mimetype); } |