1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-09-08 21:20:45 +02:00

* Fixed merge.

This commit is contained in:
Christian Muehlhaeuser
2013-01-18 08:13:02 +01:00
parent 8ec75f7bbc
commit 85190316ba

View File

@@ -113,7 +113,7 @@ DirListerThreadController::~DirListerThreadController()
void
DirListerThreadController::run()
{
m_dirLister = QPointer< DirLister >( new DirLister( m_paths ) );
m_dirLister = QWeakPointer< DirLister >( new DirLister( m_paths ) );
connect( m_dirLister.data(), SIGNAL( fileToScan( QFileInfo ) ),
parent(), SLOT( scanFile( QFileInfo ) ), Qt::QueuedConnection );