| Summary: | Empty Trash Bin Prompts User To Move Root Folder To Trash | ||
|---|---|---|---|
| Product: | [Unmaintained] kio | Reporter: | Harrison A Neal <HANtwister> |
| Component: | trash | Assignee: | David Faure <faure> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Harrison A Neal
2007-05-09 17:39:56 UTC
================== Confirmed, showing same behavior here on 2 different machines one running OpenSuse 10.1 & the other running 10.2 Both updated to KDe 3.5.6 "Release 85.1) This problem has persisted through at least 3 minor updates to Kdebase/libs/desktop. SVN commit 664555 by dfaure:
Fix regression introduced by the fix for #99898: don't ask for confirmation (with a weird path) before emptying the trash.
BUG: 145235
M +2 -0 konq_operations.cc
--- branches/KDE/3.5/kdebase/libkonq/konq_operations.cc #664554:664555
@@ -235,6 +235,8 @@
bool KonqOperations::askDeleteConfirmation( const KURL::List & selectedURLs, int method, ConfirmationType confirmation, QWidget* widget )
{
+ if ( confirmation == SKIP_CONFIRMATION )
+ return true;
QString keyName;
bool ask = ( confirmation == FORCE_CONFIRMATION );
if ( !ask )
|