equalsIgnoreCase -> equalsIgnoreAsciiCase

This commit is contained in:
Kurt Zenker 2001-05-15 15:27:01 +00:00
parent 38332f88bf
commit daf70d2760

View file

@ -2,9 +2,9 @@
*
* $RCSfile: ADatabaseMetaDataResultSet.cxx,v $
*
* $Revision: 1.9 $
* $Revision: 1.10 $
*
* last change: $Author: oj $ $Date: 2001-05-14 11:42:26 $
* last change: $Author: kz $ $Date: 2001-05-15 16:27:01 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -188,7 +188,7 @@ sal_Int32 SAL_CALL ODatabaseMetaDataResultSet::findColumn( const ::rtl::OUString
sal_Int32 nLen = xMeta->getColumnCount();
sal_Int32 i = 1;
for(;i<=nLen;++i)
if(xMeta->isCaseSensitive(i) ? columnName == xMeta->getColumnName(i) : columnName.equalsIgnoreCase(xMeta->getColumnName(i)))
if(xMeta->isCaseSensitive(i) ? columnName == xMeta->getColumnName(i) : columnName.equalsIgnoreAsciiCase(xMeta->getColumnName(i)))
break;
return i;
}