diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-02-10 23:00:44 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-02-10 23:01:07 +0900 |
commit | 2b1758a2dc82200468905f7865468972a691b6a3 (patch) | |
tree | c6f43ff867ccd1f73b86ea8ad8f88429d16807e7 /cui | |
parent | 05720546215976d8d42fa7321f455c641147db9f (diff) |
Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) to equalsAscii(...)
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/SpellDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx index a336a4b89658..483058e29df6 100644 --- a/cui/source/dialogs/SpellDialog.cxx +++ b/cui/source/dialogs/SpellDialog.cxx @@ -1234,7 +1234,7 @@ bool SpellDialog::GetNextSentence_Impl(bool bUseSavedSentence, bool bRecheck) sal_Int32 i = 0; while ( sFullCommentURL.isEmpty() && i < aProperties.getLength() ) { - if ( aProperties[i].Name.equalsAscii( "FullCommentURL" ) ) + if ( aProperties[i].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("FullCommentURL")) ) { uno::Any aValue = aProperties[i].Value; aValue >>= sFullCommentURL; |