summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-14 09:49:17 +0200
committerNoel Grandin <noel@peralex.com>2013-08-15 09:11:35 +0200
commit55f2f0864e0fb45001477c5f16217aa8f55d790f (patch)
treefd1bc66b1b96e1271092e65626e6ac7f707c60f8 /sfx2
parent00f5fde6c4520afe08650c257b8d2c279635eb09 (diff)
convert include/svtools/parhtml.hxx from String to OUString
Change-Id: I20adfc9148b8afa7a59245349f233604bd9a1d2e
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/bastyp/frmhtml.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/bastyp/frmhtml.cxx b/sfx2/source/bastyp/frmhtml.cxx
index a90778225b80..37cf4698d26c 100644
--- a/sfx2/source/bastyp/frmhtml.cxx
+++ b/sfx2/source/bastyp/frmhtml.cxx
@@ -113,7 +113,7 @@ void SfxFrameHTMLParser::ParseFrameOptions(
pFrame->SetResizable( sal_False );
break;
default:
- if ( aOption.GetTokenString().EqualsIgnoreCaseAscii(
+ if ( aOption.GetTokenString().equalsIgnoreAsciiCaseAscii(
HTML_O_READONLY ) )
{
String aStr = aOption.GetString();
@@ -122,7 +122,7 @@ void SfxFrameHTMLParser::ParseFrameOptions(
bReadonly = sal_False;
pFrame->SetReadOnly( bReadonly );
}
- else if ( aOption.GetTokenString().EqualsIgnoreCaseAscii(
+ else if ( aOption.GetTokenString().equalsIgnoreAsciiCaseAscii(
HTML_O_EDIT ) )
{
String aStr = aOption.GetString();