summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/flat/EColumns.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-10 14:28:23 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-10 14:28:23 +0000
commit9c01ac50e44f3e268f0e2f7a15070f9756eae880 (patch)
treeee8078c88ebfc1820c030b65927b48bfeb4aba9f /connectivity/source/drivers/flat/EColumns.cxx
parentc75b56576633335f5cef0f2c55bd9b6e21170ff5 (diff)
INTEGRATION: CWS dba24 (1.3.262); FILE MERGED
2005/02/09 08:07:45 oj 1.3.262.1: #i26950# remove the need for XNamed
Diffstat (limited to 'connectivity/source/drivers/flat/EColumns.cxx')
-rw-r--r--connectivity/source/drivers/flat/EColumns.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/drivers/flat/EColumns.cxx b/connectivity/source/drivers/flat/EColumns.cxx
index 8c03479d20b5..300b27e3eb5c 100644
--- a/connectivity/source/drivers/flat/EColumns.cxx
+++ b/connectivity/source/drivers/flat/EColumns.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: EColumns.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: oj $ $Date: 2001-10-12 11:47:13 $
+ * last change: $Author: vg $ $Date: 2005-03-10 15:28:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,15 +78,15 @@ using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::container;
-Reference< XNamed > OFlatColumns::createObject(const ::rtl::OUString& _rName)
+sdbcx::ObjectType OFlatColumns::createObject(const ::rtl::OUString& _rName)
{
OFlatTable* pTable = (OFlatTable*)m_pTable;
::vos::ORef<OSQLColumns> aCols = pTable->getTableColumns();
OSQLColumns::const_iterator aIter = find(aCols->begin(),aCols->end(),_rName,::comphelper::UStringMixEqual(isCaseSensitive()));
- Reference< XNamed > xRet;
+ sdbcx::ObjectType xRet;
if(aIter != aCols->end())
- xRet = Reference< XNamed >(*aIter,UNO_QUERY);
+ xRet = sdbcx::ObjectType(*aIter,UNO_QUERY);
return xRet;
}
// -------------------------------------------------------------------------