diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 02:04:07 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 02:04:07 +0000 |
commit | 26c78099d423b30a659fa599b19aca9366a52856 (patch) | |
tree | 6084d9d58e5fe865a2e027a32e5a55b3d454768a /dbaccess | |
parent | 1510028e52f0c1300f06c61832a175b4da8b7678 (diff) |
INTEGRATION: CWS warnings01 (1.4.50); FILE MERGED
2006/03/24 15:36:09 fs 1.4.50.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro)
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/TablesSingleDlg.cxx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/dbaccess/source/ui/dlg/TablesSingleDlg.cxx b/dbaccess/source/ui/dlg/TablesSingleDlg.cxx index 36ca9245db89..b373568149a6 100644 --- a/dbaccess/source/ui/dlg/TablesSingleDlg.cxx +++ b/dbaccess/source/ui/dlg/TablesSingleDlg.cxx @@ -4,9 +4,9 @@ * * $RCSfile: TablesSingleDlg.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-08 14:48:59 $ + * last change: $Author: hr $ $Date: 2006-06-20 03:04:07 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -73,12 +73,13 @@ DBG_NAME(OTableSubscriptionDialog) OTableSubscriptionDialog::OTableSubscriptionDialog(Window* pParent ,SfxItemSet* _pItems ,const Reference< XMultiServiceFactory >& _rxORB - ,const ::com::sun::star::uno::Any& _aDataSourceName) : SfxSingleTabDialog(pParent,UID_DLG_TABLE_FILTER,_pItems) - ,m_pOutSet(_pItems) - ,m_bStopExecution(sal_False) + ,const ::com::sun::star::uno::Any& _aDataSourceName) + :SfxSingleTabDialog(pParent,UID_DLG_TABLE_FILTER,_pItems) + ,m_pImpl( new ODbDataSourceAdministrationHelper( _rxORB, pParent, this ) ) + ,m_bStopExecution(sal_False) + ,m_pOutSet(_pItems) { DBG_CTOR(OTableSubscriptionDialog,NULL); - m_pImpl = ::std::auto_ptr<ODbDataSourceAdministrationHelper>(new ODbDataSourceAdministrationHelper(_rxORB,pParent,this)); m_pImpl->setDataSourceOrName(_aDataSourceName); Reference< XPropertySet > xDatasource = m_pImpl->getCurrentDataSource(); m_pOutSet = new SfxItemSet( *_pItems ); |