1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-13 12:31:52 +02:00

* Fixed issue with obsolete TransferView items.

This commit is contained in:
Christian Muehlhaeuser 2010-11-29 11:42:50 +01:00
parent 7ebfe1c7c7
commit 238ff28e61
2 changed files with 8 additions and 7 deletions

View File

@ -51,8 +51,8 @@ TransferView::fileTransferFinished( FileTransferConnection* ftc )
if ( !m_index.contains( ftc ) )
return;
int i = m_index.take( ftc );
delete m_tree->invisibleRootItem()->takeChild( i );
QPersistentModelIndex i = m_index.take( ftc );
delete m_tree->invisibleRootItem()->takeChild( i.row() );
if ( m_tree->invisibleRootItem()->childCount() > 0 )
emit showWidget();
@ -71,7 +71,8 @@ void
TransferView::onTransferUpdate()
{
FileTransferConnection* ftc = (FileTransferConnection*)sender();
qDebug() << Q_FUNC_INFO << ftc->track().isNull() << ftc->source().isNull();
// qDebug() << Q_FUNC_INFO << ftc->track().isNull() << ftc->source().isNull();
if ( ftc->track().isNull() || ftc->source().isNull() )
return;
@ -79,13 +80,13 @@ TransferView::onTransferUpdate()
if ( m_index.contains( ftc ) )
{
int i = m_index.value( ftc );
ti = m_tree->invisibleRootItem()->child( i );
QPersistentModelIndex i = m_index.value( ftc );
ti = m_tree->invisibleRootItem()->child( i.row() );
}
else
{
ti = new QTreeWidgetItem( m_tree );
m_index.insert( ftc, m_tree->invisibleRootItem()->childCount() - 1 );
m_index.insert( ftc, QPersistentModelIndex( m_tree->model()->index( m_tree->invisibleRootItem()->childCount() - 1, 0 ) ) );
emit showWidget();
}

View File

@ -31,7 +31,7 @@ private slots:
void onTransferUpdate();
private:
QHash< FileTransferConnection*, int > m_index;
QHash< FileTransferConnection*, QPersistentModelIndex > m_index;
QTreeWidget* m_tree;
AnimatedSplitter* m_parent;
};