Tag: cws_src680_hsqlcsv User: fs Date: 2006/09/14 04:54:43 Modified: dba/dbaccess/source/ui/app/AppDetailView.cxx dba/dbaccess/source/ui/app/AppDetailView.hxx
Log: #i69526# getQualifiedName and getSelectionElementNames do not need XDatabaseMetaData File Changes: Directory: /dba/dbaccess/source/ui/app/ ======================================= File [changed]: AppDetailView.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/app/AppDetailView.cxx?r1=1.17&r2=1.17.32.1 Delta lines: +7 -7 ------------------- --- AppDetailView.cxx 20 Jun 2006 02:54:33 -0000 1.17 +++ AppDetailView.cxx 14 Sep 2006 11:54:41 -0000 1.17.32.1 @@ -4,9 +4,9 @@ * * $RCSfile: AppDetailView.cxx,v $ * - * $Revision: 1.17 $ + * $Revision: 1.17.32.1 $ * - * last change: $Author: hr $ $Date: 2006/06/20 02:54:33 $ + * last change: $Author: fs $ $Date: 2006/09/14 11:54:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -692,10 +692,10 @@ Resize(); } // ----------------------------------------------------------------------------- -::rtl::OUString OApplicationDetailView::getQualifiedName(SvLBoxEntry* _pEntry,const Reference< XDatabaseMetaData>& _xMetaData) const +::rtl::OUString OApplicationDetailView::getQualifiedName( SvLBoxEntry* _pEntry ) const { DBG_CHKTHIS(OApplicationDetailView,NULL); - return m_pControlHelper->getQualifiedName(_pEntry,_xMetaData); + return m_pControlHelper->getQualifiedName( _pEntry ); } // ----------------------------------------------------------------------------- sal_Bool OApplicationDetailView::isLeaf(SvLBoxEntry* _pEntry) const @@ -760,10 +760,10 @@ return m_pControlHelper->getElementCount(); } // ----------------------------------------------------------------------------- -void OApplicationDetailView::getSelectionElementNames(::std::vector< ::rtl::OUString>& _rNames,const Reference< XDatabaseMetaData>& _xMetaData) const +void OApplicationDetailView::getSelectionElementNames( ::std::vector< ::rtl::OUString>& _rNames ) const { DBG_CHKTHIS(OApplicationDetailView,NULL); - m_pControlHelper->getSelectionElementNames(_rNames,_xMetaData); + m_pControlHelper->getSelectionElementNames( _rNames ); } // ----------------------------------------------------------------------------- SvLBoxEntry* OApplicationDetailView::getEntry( const Point& _aPoint ) const File [changed]: AppDetailView.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/app/AppDetailView.hxx?r1=1.11&r2=1.11.120.1 Delta lines: +5 -11 -------------------- --- AppDetailView.hxx 3 Jan 2006 16:16:14 -0000 1.11 +++ AppDetailView.hxx 14 Sep 2006 11:54:41 -0000 1.11.120.1 @@ -4,9 +4,9 @@ * * $RCSfile: AppDetailView.hxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.11.120.1 $ * - * last change: $Author: kz $ $Date: 2006/01/03 16:16:14 $ + * last change: $Author: fs $ $Date: 2006/09/14 11:54:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -200,13 +200,10 @@ @param _pEntry The entry of a table, or query, form, report to get the qualified name. If the entry is <NULL/>, the first selected is chosen. - @param _xMetaData - The meta data are used to create the table name, otherwise this may also be <NULL/> @return the qualified name */ - ::rtl::OUString getQualifiedName(SvLBoxEntry* _pEntry - ,const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData>& _xMetaData) const; + ::rtl::OUString getQualifiedName( SvLBoxEntry* _pEntry ) const; /** returns if an entry is a leaf @param _pEntry @@ -256,11 +253,8 @@ /** returns the element names which are selected @param _rNames The list will be filled. - @param _xMetaData - Will be used when the table list should be filled. */ - void getSelectionElementNames(::std::vector< ::rtl::OUString>& _rNames - ,const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData>& _xMetaData = NULL) const; + void getSelectionElementNames(::std::vector< ::rtl::OUString>& _rNames ) const; /** adds a new object to the detail page. @param _eType --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
