Tag: cws_src680_oj17 User: oj Date: 06/03/16 02:36:29 Modified: /dba/dbaccess/source/ui/app/ AppController.cxx
Log: #i63113# remove container from list when disposing File Changes: Directory: /dba/dbaccess/source/ui/app/ ======================================= File [changed]: AppController.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/app/AppController.cxx?r1=1.26.28.1&r2=1.26.28.2 Delta lines: +4 -9 ------------------- --- AppController.cxx 10 Mar 2006 11:28:18 -0000 1.26.28.1 +++ AppController.cxx 16 Mar 2006 10:36:26 -0000 1.26.28.2 @@ -4,9 +4,9 @@ * * $RCSfile: AppController.cxx,v $ * - * $Revision: 1.26.28.1 $ + * $Revision: 1.26.28.2 $ * - * last change: $Author: oj $ $Date: 2006/03/10 11:28:18 $ + * last change: $Author: oj $ $Date: 2006/03/16 10:36:26 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -534,19 +534,14 @@ TDocuments::iterator aFind = ::std::find_if(m_aDocuments.begin(),m_aDocuments.end(), ::std::compose1(::std::bind2nd(::std::equal_to<Reference<XComponent> >(),xComp),::std::select1st<TDocuments::value_type>())); if ( aFind != m_aDocuments.end() ) - { m_aDocuments.erase(aFind); } - } - else if ( xContainer.is() ) + if ( xContainer.is() ) { TContainerVector::iterator aFind = ::std::find(m_aCurrentContainers.begin(),m_aCurrentContainers.end(),xContainer); if ( aFind != m_aCurrentContainers.end() ) - { m_aCurrentContainers.erase(aFind); } - } - else OApplicationController_CBASE::disposing( _rSource ); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
