| Summary: | browser history isn't properly cleaned | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Andrea Garbarini <garbaz> |
| Component: | general | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | katarina |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Andrea Garbarini
2006-01-24 10:11:16 UTC
Using "clear history" in settings->configure konq -> history sidebar empties konq_history here. What setting did you use in kcontrol? I'm experiencing the same thing. Both when trying to erase it from Control Center --> clean up (clears everything except the konq_history file) and also through Konqueror itself (History sidebar --> clear History). When clearing it in Konqueror it seems to be gone, but if I start a new one/another one, all of the history is left. SVN commit 588187 by kling:
Connect to KonqHistoryManager's cleared() signal.
Makes "Clear History" wipe the location bar history permanently instead of just in open Konqueror windows.
BUG: 78538
BUG: 99143
BUG: 120698
BUG: 128854
M +1 -0 konq_combo.cc
--- branches/KDE/3.5/kdebase/konqueror/konq_combo.cc #588186:588187
@@ -122,6 +122,7 @@
// Make the lineedit consume the Key_Enter event...
setTrapReturnKey( true );
+ connect( KonqHistoryManager::kself(), SIGNAL(cleared()), SLOT(slotCleared()) );
connect( this, SIGNAL(cleared() ), SLOT(slotCleared()) );
connect( this, SIGNAL(highlighted( int )), SLOT(slotSetIcon( int )) );
connect( this, SIGNAL(activated( const QString& )),
|