diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-04 08:54:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-06-04 11:52:31 +0200 |
commit | adc20c3937f3119d39af5a0c8e4a439d8127fe63 (patch) | |
tree | 8722ff80bf1cc00e8d099a87767e2290aaab0aa4 /ucb/source | |
parent | 06a09dd0ad1e8afcf69e877501036e068d477438 (diff) |
compareToAscii -> equalsAscii
convert places using compareToAscii that should be using equalsAscii
Change-Id: I97b4da7f6e867c3967b2f65b70d6886f83b4a4e5
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/file/filrset.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ucb/source/ucp/file/filrset.cxx b/ucb/source/ucp/file/filrset.cxx index a7a60606a01e..d847271ddf81 100644 --- a/ucb/source/ucp/file/filrset.cxx +++ b/ucb/source/ucp/file/filrset.cxx @@ -708,8 +708,7 @@ XResultSet_impl::getMetaData( { for ( sal_Int32 n = 0; n < m_sProperty.getLength(); ++n ) { - if ( m_sProperty.getConstArray()[ n ].Name.compareToAscii( "Title" ) - == 0 ) + if ( m_sProperty.getConstArray()[ n ].Name.equalsAscii( "Title" ) ) { // @@@ #82177# - Determine correct value! bool bCaseSensitiveChildren = false; |