diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-01-21 16:06:53 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-01-21 16:06:53 +0000 |
commit | 66eede9a177b05c02816a22021b654f3975a86cf (patch) | |
tree | 4a33bd796ba38f8de40c8fcc9b3eb17f25be98a5 /dbaccess/source/ui | |
parent | f70bdd0d4dc26b7a783a10f221d6dd7593b19b4c (diff) |
INTEGRATION: CWS dba22 (1.4.28); FILE MERGED
2005/01/07 07:53:22 oj 1.4.28.2: RESYNC: (1.4-1.5); FILE MERGED
2004/12/13 14:26:26 oj 1.4.28.1: #i38891# add listeners and hold them
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r-- | dbaccess/source/ui/app/AppDetailView.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/ui/app/AppDetailView.cxx b/dbaccess/source/ui/app/AppDetailView.cxx index 4bd140538271..8121a8b31c3d 100644 --- a/dbaccess/source/ui/app/AppDetailView.cxx +++ b/dbaccess/source/ui/app/AppDetailView.cxx @@ -2,9 +2,9 @@ * * $RCSfile: AppDetailView.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: obo $ $Date: 2005-01-05 12:32:47 $ + * last change: $Author: kz $ $Date: 2005-01-21 17:06:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -559,16 +559,16 @@ void OApplicationDetailView::onCreationClick( const ::rtl::OUString& _sCommand) static_cast<OAppBorderWindow*>(GetParent())->getView()->getElementNotification()->onCreationClick(_sCommand); } // ----------------------------------------------------------------------------- -SvLBoxEntry* OApplicationDetailView::elementAdded(ElementType eType,const ::rtl::OUString& _rName, const Any& _rObject, const Reference< XConnection >& _rxConn ) +SvLBoxEntry* OApplicationDetailView::elementAdded(ElementType _eType,const ::rtl::OUString& _rName, const Any& _rObject, const Reference< XConnection >& _rxConn ) { DBG_CHKTHIS(OApplicationDetailView,NULL); - return m_pControlHelper->elementAdded(eType,_rName, _rObject, _rxConn ); + return m_pControlHelper->elementAdded(_eType,_rName, _rObject, _rxConn ); } // ----------------------------------------------------------------------------- -void OApplicationDetailView::elementRemoved(const ::rtl::OUString& _rName, const Reference< XConnection >& _rxConn ) +void OApplicationDetailView::elementRemoved(ElementType _eType,const ::rtl::OUString& _rName, const Reference< XConnection >& _rxConn ) { DBG_CHKTHIS(OApplicationDetailView,NULL); - m_pControlHelper->elementRemoved(_rName, _rxConn ); + m_pControlHelper->elementRemoved(_eType,_rName, _rxConn ); } // ----------------------------------------------------------------------------- void OApplicationDetailView::elementReplaced(ElementType _eType |