|
|
|
@ -65,7 +65,7 @@ MainWindow::MainWindow()
|
|
|
|
|
connect( m_part, TQT_SIGNAL(canceled( const TQString& )), m_histories, TQT_SLOT(stop()) );
|
|
|
|
|
connect( BrowserExtension::childObject( m_part ), TQT_SIGNAL(openURLNotify()), TQT_SLOT(urlAboutToChange()) );
|
|
|
|
|
|
|
|
|
|
KConfig* const config = KGlobal::config();
|
|
|
|
|
KConfig* const config = TDEGlobal::config();
|
|
|
|
|
config->setGroup( "general" );
|
|
|
|
|
m_combo->setHistoryItems( config->readPathListEntry( "comboHistory" ) );
|
|
|
|
|
applyMainWindowSettings( config, "window" );
|
|
|
|
@ -100,7 +100,7 @@ MainWindow::setupActions() //singleton function
|
|
|
|
|
m_histories = new HistoryCollection( ac, TQT_TQOBJECT(this), "history_collection" );
|
|
|
|
|
|
|
|
|
|
ac->action( "scan_directory" )->setText( i18n( "&Scan Directory..." ) );
|
|
|
|
|
m_recentScans->loadEntries( KGlobal::config() );
|
|
|
|
|
m_recentScans->loadEntries( TDEGlobal::config() );
|
|
|
|
|
combo->setAutoSized( true ); //FIXME what does this do?
|
|
|
|
|
|
|
|
|
|
connect( m_recentScans, TQT_SIGNAL(urlSelected( const KURL& )), TQT_SLOT(slotScanUrl( const KURL& )) );
|
|
|
|
@ -114,7 +114,7 @@ MainWindow::queryExit()
|
|
|
|
|
if( !m_part ) //apparently std::exit() still calls this function, and abort() causes a crash..
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
KConfig* const config = KGlobal::config();
|
|
|
|
|
KConfig* const config = TDEGlobal::config();
|
|
|
|
|
|
|
|
|
|
saveMainWindowSettings( config, "window" );
|
|
|
|
|
m_recentScans->saveEntries( config );
|
|
|
|
|