Tag: cws_src680_qiq User: fs Date: 2006/06/27 05:55:09 Modified: dba/dbaccess/source/ui/querydesign/TableWindow.cxx
Log: RESYNC: (1.30-1.31); FILE MERGED File Changes: Directory: /dba/dbaccess/source/ui/querydesign/ =============================================== File [changed]: TableWindow.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/querydesign/TableWindow.cxx?r1=1.30.122.1&r2=1.30.122.2 Delta lines: +12 -13 --------------------- --- TableWindow.cxx 10 May 2006 11:08:39 -0000 1.30.122.1 +++ TableWindow.cxx 27 Jun 2006 12:55:06 -0000 1.30.122.2 @@ -139,17 +139,16 @@ OTableWindow::OTableWindow( Window* pParent, OTableWindowData* pTabWinData ) :Window( pParent, WB_3DLOOK|WB_MOVEABLE ) ,m_aTitle( this ) - ,m_nSizingFlags( SIZING_NONE ) - ,m_bActive( FALSE ) ,m_pListBox(NULL) + ,m_pAccessible(NULL) + ,m_pData( pTabWinData ) ,m_nMoveCount(0) ,m_nMoveIncrement(1) - ,m_pAccessible(NULL) + ,m_nSizingFlags( SIZING_NONE ) + ,m_bActive( FALSE ) ,m_bIsQuery( false ) { DBG_CTOR(OTableWindow,NULL); - // ich uebernehme nicht die Verantwortung fuer die Daten, ich merke mir nur den Zeiger darauf - m_pData = pTabWinData; // Position und Groesse bestimmen if( GetData()->HasPosition() ) @@ -232,7 +231,7 @@ //------------------------------------------------------------------------------ OTableWindowListBox* OTableWindow::CreateListBox() { - return new OTableWindowListBox(this, GetComposedName(), GetTableName()); + return new OTableWindowListBox(this); } //------------------------------------------------------------------------------ @@ -319,7 +318,7 @@ return TRUE; } // ----------------------------------------------------------------------------- -void* OTableWindow::createUserData(const Reference< XPropertySet>& _xColumn,bool _bPrimaryKey) +void* OTableWindow::createUserData(const Reference< XPropertySet>& /*_xColumn*/,bool /*_bPrimaryKey*/) { return NULL; } @@ -744,7 +743,7 @@ } } // ----------------------------------------------------------------------------- -void OTableWindow::_disposing( const ::com::sun::star::lang::EventObject& _rSource ) +void OTableWindow::_disposing( const ::com::sun::star::lang::EventObject& /*_rSource*/ ) { ::osl::MutexGuard aGuard( m_aMutex ); m_xTableOrQuery = NULL; @@ -774,7 +773,7 @@ { SvLBoxEntry* pCurrent = m_pListBox->GetCurEntry(); if ( pCurrent ) - ptWhere = m_pListBox->GetEntryPos(pCurrent); + ptWhere = m_pListBox->GetEntryPosition(pCurrent); else ptWhere = m_aTitle.GetPosPixel(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
