summaryrefslogtreecommitdiff
path: root/connectivity/source/sdbcx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-07-10 13:39:15 +0000
committerOliver Bolte <obo@openoffice.org>2006-07-10 13:39:15 +0000
commita4e91af38afe3995b2a0d78d3233d8636b32c559 (patch)
treed7bf297017a13a65ee8854d3d296a0bcd1ef66dd /connectivity/source/sdbcx
parentc9303efda25f1dc0280f413fe418ecc2e48254cf (diff)
INTEGRATION: CWS qiq (1.15.104); FILE MERGED
2006/05/23 13:54:39 fs 1.15.104.1: some refactoring of compose/quoteTableName and friends, in preparation of #i51143#
Diffstat (limited to 'connectivity/source/sdbcx')
-rw-r--r--connectivity/source/sdbcx/VCatalog.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/sdbcx/VCatalog.cxx b/connectivity/source/sdbcx/VCatalog.cxx
index 4dabe93abb95..a0d04d1b9096 100644
--- a/connectivity/source/sdbcx/VCatalog.cxx
+++ b/connectivity/source/sdbcx/VCatalog.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: VCatalog.cxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 07:42:15 $
+ * last change: $Author: obo $ $Date: 2006-07-10 14:39:15 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -230,8 +230,8 @@ Reference< XNameAccess > SAL_CALL OCatalog::getGroups( ) throw(RuntimeException
if ( _xRow->wasNull() )
sTable = ::rtl::OUString();
- ::rtl::OUString sComposedName;
- ::dbtools::composeTableName(m_xMetaData,sCatalog,sSchema,sTable,sComposedName,sal_False,::dbtools::eInDataManipulation);
+ ::rtl::OUString sComposedName(
+ ::dbtools::composeTableName( m_xMetaData, sCatalog, sSchema, sTable, sal_False, ::dbtools::eInDataManipulation ) );
return sComposedName;
}
// -----------------------------------------------------------------------------