diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 00:05:01 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 00:05:01 +0000 |
commit | 4926aa2677892d905d687a2854373219697bc801 (patch) | |
tree | f471a3680908ac8a7690b212fa6ffc126610fa2b /connectivity/source/commontools | |
parent | c50729c4d9b7607569a62b9c4dc55ca1281de797 (diff) |
INTEGRATION: CWS warnings01 (1.3.30); FILE MERGED
2006/06/08 09:46:03 fs 1.3.30.2: #136883# renaming getMetaData was a bad idea - it's a overridden virtual method
2005/11/21 10:07:39 fs 1.3.30.1: #i57457# warning-free code on unx*
Diffstat (limited to 'connectivity/source/commontools')
-rw-r--r-- | connectivity/source/commontools/TTableHelper.cxx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/connectivity/source/commontools/TTableHelper.cxx b/connectivity/source/commontools/TTableHelper.cxx index a81ab0d37055..f3b666599250 100644 --- a/connectivity/source/commontools/TTableHelper.cxx +++ b/connectivity/source/commontools/TTableHelper.cxx @@ -4,9 +4,9 @@ * * $RCSfile: TTableHelper.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 05:13:29 $ + * last change: $Author: hr $ $Date: 2006-06-20 01:05:01 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -142,10 +142,12 @@ void OTableHelper::refreshColumns() Any aCatalog; if ( m_CatalogName.getLength() ) aCatalog <<= m_CatalogName; - Reference< XResultSet > xResult = getMetaData()->getColumns( aCatalog, - m_SchemaName, - m_Name, - ::rtl::OUString::createFromAscii("%")); +OSL_TRACE( "meta data: %p", getMetaData().get() ); + Reference< XResultSet > xResult = getMetaData()->getColumns( + aCatalog, + m_SchemaName, + m_Name, + ::rtl::OUString::createFromAscii("%")); if ( xResult.is() ) { |