@ -41,11 +41,13 @@ using Collection::DeviceItem;
CollectionSetup * CollectionSetup : : s_instance ;
CollectionSetup : : CollectionSetup ( TQWidget * parent , bool recursive )
CollectionSetup : : CollectionSetup ( TQWidget * parent , bool recursive , bool fullMode , TQStringList dirs )
: TQVBox ( parent )
{
s_instance = this ;
m_dirs = dirs ;
// (new TQLabel( i18n(
// "Select the folder(s) to scan. "), this ))->setAlignment( TQt::WordBreak );
@ -70,7 +72,7 @@ CollectionSetup::CollectionSetup( TQWidget *parent, bool recursive )
reinterpret_cast < TQWidget * > ( m_view - > header ( ) ) - > hide ( ) ;
new Item ( m_view , i18n ( " System Folder " ) , " / " , " folder_red " ) ;
new Item ( m_view , i18n ( " Home Folder " ) , TQDir : : homeDirPath ( ) , " folder_home " ) ;
new DeviceItem ( m_view ) ;
if( fullMode ) new DeviceItem ( m_view ) ;
setSpacing ( 6 ) ;
}