summaryrefslogtreecommitdiff
path: root/sfx2/source/doc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-08-15 09:25:55 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-08-15 09:50:39 +0100
commit32514ab76dc9eebeaf79d1bd843ca9157595781a (patch)
tree6490f59b1025663b2e098cb45e6b7f49f57bfad5 /sfx2/source/doc
parent2cba0b8f744c832ab91e7786c4a1d3ad13d04c43 (diff)
this used to be CompareIgnoreCaseToAscii
prior to 33eeb70011b34a3b04a74b2237d1d6fdde030c35 Change-Id: I20d25cf6bd4479b9b98b04aec6124d94c272bc26
Diffstat (limited to 'sfx2/source/doc')
-rw-r--r--sfx2/source/doc/objmisc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/doc/objmisc.cxx b/sfx2/source/doc/objmisc.cxx
index d7b6c0bebcfc..3b09a22f4e0b 100644
--- a/sfx2/source/doc/objmisc.cxx
+++ b/sfx2/source/doc/objmisc.cxx
@@ -1626,7 +1626,7 @@ void SfxHeaderAttributes_Impl::SetAttributes()
void SfxHeaderAttributes_Impl::SetAttribute( const SvKeyValue& rKV )
{
String aValue = rKV.GetValue();
- if( rKV.GetKey() == "refresh" && !rKV.GetValue().isEmpty() )
+ if( rKV.GetKey().equalsIgnoreAsciiCase("refresh") && !rKV.GetValue().isEmpty() )
{
sal_uInt32 nTime = aValue.GetToken( 0, ';' ).ToInt32() ;
String aURL = comphelper::string::strip(aValue.GetToken( 1, ';' ), ' ');