summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-08-15 13:24:53 +0200
committerMichael Stahl <mstahl@redhat.com>2013-08-15 13:25:22 +0200
commit283e39afef68f90dc7ed8ba9abf9126077ac9da0 (patch)
treeb931b888d36194c60e59cf0f42c8c1c75d6cadd4
parent7fdc0a709dd75ae731bf311e0771a04ef5f1901d (diff)
SfxFrameHTMLParser: fix more clang warnings
Change-Id: I97fe3dcbe6750d9db747b1cbf8b46f7f56781997
-rw-r--r--sfx2/source/bastyp/frmhtml.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sfx2/source/bastyp/frmhtml.cxx b/sfx2/source/bastyp/frmhtml.cxx
index 37cf4698d26c..2273a810cdf6 100644
--- a/sfx2/source/bastyp/frmhtml.cxx
+++ b/sfx2/source/bastyp/frmhtml.cxx
@@ -113,8 +113,7 @@ void SfxFrameHTMLParser::ParseFrameOptions(
pFrame->SetResizable( sal_False );
break;
default:
- if ( aOption.GetTokenString().equalsIgnoreAsciiCaseAscii(
- HTML_O_READONLY ) )
+ if (aOption.GetTokenString().equalsIgnoreAsciiCase(HTML_O_READONLY))
{
String aStr = aOption.GetString();
sal_Bool bReadonly = sal_True;
@@ -122,8 +121,7 @@ void SfxFrameHTMLParser::ParseFrameOptions(
bReadonly = sal_False;
pFrame->SetReadOnly( bReadonly );
}
- else if ( aOption.GetTokenString().equalsIgnoreAsciiCaseAscii(
- HTML_O_EDIT ) )
+ else if (aOption.GetTokenString().equalsIgnoreAsciiCase(HTML_O_EDIT))
{
String aStr = aOption.GetString();
sal_Bool bEdit = sal_True;