diff options
author | Kurt Zenker <kz@openoffice.org> | 2001-05-15 15:43:20 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2001-05-15 15:43:20 +0000 |
commit | 225a4606960f1887fd371d9495a855c5e7c8df1b (patch) | |
tree | c1435d747fe8ac48e47bef0d77a090a7b27e6a00 /connectivity/source/drivers/ado | |
parent | daf70d27603b16af74dbb191ec24206aca7e642d (diff) |
equalsIgnoreCase -> equalsIgnoreAsciiCase
Diffstat (limited to 'connectivity/source/drivers/ado')
-rw-r--r-- | connectivity/source/drivers/ado/AResultSet.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/ado/AResultSet.cxx b/connectivity/source/drivers/ado/AResultSet.cxx index 43fb0534c0b4..878258cec5ac 100644 --- a/connectivity/source/drivers/ado/AResultSet.cxx +++ b/connectivity/source/drivers/ado/AResultSet.cxx @@ -2,9 +2,9 @@ * * $RCSfile: AResultSet.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: oj $ $Date: 2001-05-14 11:40:04 $ + * last change: $Author: kz $ $Date: 2001-05-15 16:43:20 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -231,7 +231,7 @@ sal_Int32 SAL_CALL OResultSet::findColumn( const ::rtl::OUString& columnName ) t 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; } |