Summary: | Konqueror does not understand unchecked 'URLs expire after' while loading preferences (Maximum age of History entries=0) | ||
---|---|---|---|
Product: | [Applications] konqueror | Reporter: | Piotr Budny <piotr.budny+bugskde> |
Component: | general | Assignee: | Konqueror Developers <konq-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | Patch that fixes that bug |
Description
Piotr Budny
2005-04-15 11:05:35 UTC
Created attachment 10671 [details]
Patch that fixes that bug
I don't know if it is done right, keep in mind I'm the beginner as a developer
in Qt/KDE
CVS commit by pletourn: Allow the history to be disabled BUG:103941 M +2 -2 kcmhistory.cpp 1.16.2.2 --- kdebase/konqueror/sidebar/trees/history_module/kcmhistory.cpp #1.16.2.1:1.16.2.2 @@ -60,6 +60,6 @@ HistorySidebarConfig::HistorySidebarConf dialog = new KonqSidebarHistoryDlg(this); - dialog->spinEntries->setRange( 1, INT_MAX, 1, false ); - dialog->spinExpire->setRange( 1, INT_MAX, 1, false ); + dialog->spinEntries->setRange( 0, INT_MAX, 1, false ); + dialog->spinExpire->setRange( 0, INT_MAX, 1, false ); dialog->spinNewer->setRange( 0, INT_MAX, 1, false ); |