https://bugzilla.novell.com/show_bug.cgi?id=206447 ssommer@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|REMIND | ------- Comment #2 from ssommer@novell.com 2006-11-14 03:42 MST ------- This is still happening with 10.2. I had a look at the sources but I'm not sure if I identified the problem correctly as the backtraces with the new kde version are completely useless. in kdebase-3.5.5/konqueror/konq_mainwindow.cc you have got a function void KonqMainWindow::openURL Somewhere in this function there is following Code snippet: KonqRun * run = new KonqRun( this, view /* can be 0L */, url, req, trustedSource ); // Never start in external browser run->setEnableExternalBrowser(false); if ( view ) view->setRun( run ); else if ( !req.newTab ) { // there can be only one :) (when not a new tab) delete m_initialKonqRun; m_initialKonqRun = run; } if ( view == m_currentView ) startAnimation(); connect( run, SIGNAL( finished() ), this, SLOT( slotRunFinished() ) ); Now I think the problem is that openURL gets called once you click on the download link. This opens a new KonqRun instance thread (that opens the "Save to" window. Meanwhile openURL gets called another time (timer event from the download page?). In openURL the the first KonqRun instance then gets deleted (but its thread keeps running). Now when you close the 2nd download window the first download window gets accessible again but the underlying code already vanished... -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.