Tag: cws_src680_qiq User: fs Date: 06/05/10 04:52:40 Modified: /dba/dbaccess/source/ui/control/ RelationControl.cxx
Log: #i51143# File Changes: Directory: /dba/dbaccess/source/ui/control/ =========================================== File [changed]: RelationControl.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/control/RelationControl.cxx?r1=1.15&r2=1.15.118.1 Delta lines: +9 -3 ------------------- --- RelationControl.cxx 23 Sep 2005 12:23:20 -0000 1.15 +++ RelationControl.cxx 10 May 2006 11:52:37 -0000 1.15.118.1 @@ -4,9 +4,9 @@ * * $RCSfile: RelationControl.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.15.118.1 $ * - * last change: $Author: hr $ $Date: 2005/09/23 12:23:20 $ + * last change: $Author: fs $ $Date: 2006/05/10 11:52:37 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -204,11 +204,17 @@ { OJoinTableView::OTableWindowMap::const_iterator aFind = m_pTableMap->find(m_pConnData->GetSourceWinName()); if( aFind != m_pTableMap->end() ) + { m_xSourceDef = aFind->second->GetTable(); + DBG_ASSERT( !aFind->second->isQuery(), "ORelationControl::lateInit: a query? In the relation designer?" ); + } aFind = m_pTableMap->find(m_pConnData->GetDestWinName()); if( aFind != m_pTableMap->end() ) + { m_xDestDef = aFind->second->GetTable(); + DBG_ASSERT( !aFind->second->isQuery(), "ORelationControl::lateInit: a query? In the relation designer?" ); + } if ( ColCount() == 0 ) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
