|
|
|
@ -78,7 +78,7 @@ ScanController::ScanController( CollectionDB* parent, bool incremental, const TQ
|
|
|
|
|
|
|
|
|
|
connect( this, TQ_SIGNAL( scanDone( bool ) ), MountPointManager::instance(), TQ_SLOT( updateStatisticsURLs( bool ) ) );
|
|
|
|
|
|
|
|
|
|
connect( m_scanner, TQ_SIGNAL( readReady( KProcIO* ) ), TQ_SLOT( slotReadReady() ) );
|
|
|
|
|
connect( m_scanner, TQ_SIGNAL( readReady( TDEProcIO* ) ), TQ_SLOT( slotReadReady() ) );
|
|
|
|
|
|
|
|
|
|
*m_scanner << "amarokcollectionscanner";
|
|
|
|
|
*m_scanner << "--nocrashhandler"; // We want to be able to catch SIGSEGV
|
|
|
|
@ -534,7 +534,7 @@ ScanController::customEvent( TQCustomEvent* e )
|
|
|
|
|
|
|
|
|
|
delete m_scanner; // Reusing doesn't work, so we have to destroy and reinstantiate
|
|
|
|
|
m_scanner = new Amarok::ProcIO();
|
|
|
|
|
connect( m_scanner, TQ_SIGNAL( readReady( KProcIO* ) ), TQ_SLOT( slotReadReady() ) );
|
|
|
|
|
connect( m_scanner, TQ_SIGNAL( readReady( TDEProcIO* ) ), TQ_SLOT( slotReadReady() ) );
|
|
|
|
|
|
|
|
|
|
*m_scanner << "amarokcollectionscanner";
|
|
|
|
|
*m_scanner << "--nocrashhandler"; // We want to be able to catch SIGSEGV
|
|
|
|
|