summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-07-04 09:55:14 +0000
committerOcke Janssen <oj@openoffice.org>2001-07-04 09:55:14 +0000
commit57af5d9b4828c24ddad307c744ccfa96a32a0445 (patch)
tree373aaf5061b1a119f7f49e311ae155397e5b50de
parent462678560e6b3d6a88534c93d21e2f8dfe28d4fb (diff)
#85397# correcting in typename compare
-rw-r--r--dbaccess/source/core/api/tablecontainer.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/core/api/tablecontainer.cxx b/dbaccess/source/core/api/tablecontainer.cxx
index 4f8e0c58b8c4..4a83ab319909 100644
--- a/dbaccess/source/core/api/tablecontainer.cxx
+++ b/dbaccess/source/core/api/tablecontainer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tablecontainer.cxx,v $
*
- * $Revision: 1.28 $
+ * $Revision: 1.29 $
*
- * last change: $Author: fs $ $Date: 2001-06-18 11:43:14 $
+ * last change: $Author: oj $ $Date: 2001-07-04 10:55:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -601,10 +601,10 @@ void SAL_CALL OTableContainer::appendByDescriptor( const Reference< XPropertySet
Reference<XRow> xRow(xRes,UNO_QUERY);
while(xRes->next())
{
- ::rtl::OUString sTypeName = xRow->getString(1);
+ ::rtl::OUString sTypeName2Cmp = xRow->getString(1);
sal_Int32 nType = xRow->getShort(2);
::rtl::OUString sLiteralPre = xRow->getString(4);
- if( sTypeName == sTypeName && nType == nDataType && sLiteralPre.getLength() && !xRow->wasNull())
+ if( sTypeName.equalsIgnoreAsciiCase(sTypeName2Cmp) && nType == nDataType && sLiteralPre.getLength() && !xRow->wasNull())
{
bUseLiteral = sal_True;
break;