Summary: | undefined notification pops up after emptying the trash | ||
---|---|---|---|
Product: | [Unmaintained] kio | Reporter: | Tomasz Kołosowski <kde> |
Component: | trash | Assignee: | David Faure <faure> |
Status: | RESOLVED FIXED | ||
Severity: | minor | CC: | alex.ioannou, cjacker, clearmartin, corrado.mella, enoopt.adams, jsardid, mrboese, nate, plasma-bugs, vindrg |
Priority: | NOR | ||
Version: | 4.10.2 | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
URL: | http://i.imgur.com/6OhYQsT.png | ||
See Also: | https://bugs.kde.org/show_bug.cgi?id=311824 | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: |
screenshot of the trash emptied notification
Screen Grab of notification |
Description
Tomasz Kołosowski
2013-05-05 22:22:36 UTC
*** Bug 317256 has been marked as a duplicate of this bug. *** *** Bug 313184 has been marked as a duplicate of this bug. *** I daily produce a lot of trash and delete it afterwards. Therefore I can confirm this bug on KDE 4.11.3, Arch Linux. The "undefined" message happens every time I empty larger amount of data from trash can. Also confirmed for Kubuntu 13.10. Add a infoMessage call to kio_trash can fix the problem("trash empty popup" with "undefined" titlte.) diff -Nur kde-runtime-4.12.0/kioslave/trash/kio_trash.cpp kde-runtime-4.12.0.fix/kioslave/trash/kio_trash.cpp --- kde-runtime-4.12.0/kioslave/trash/kio_trash.cpp 2013-12-30 15:49:56.579077420 +0800 +++ kde-runtime-4.12.0.fix/kioslave/trash/kio_trash.cpp 2013-12-30 15:50:19.192077759 +0800 @@ -469,9 +469,10 @@ switch (cmd) { case 1: - if ( impl.emptyTrash() ) + if ( impl.emptyTrash() ) { + infoMessage(i18n("emtpy trash")); finished(); - else + } else error( impl.lastErrorCode(), impl.lastErrorMessage() ); break; case 2: I don't want to sound picky but you made a typo there: "emtpy trash" Cheers :) Sorry about that:-) this workaround or fix only fix the "empty trash" problem. It seems "restore a file" still had such problem, maybe in some copy/move Kio jobs in trashimpl.cpp, I did not find a correct way to fix them. Created attachment 86349 [details]
screenshot of the trash emptied notification
My system is Kubuntu 14.04, KDE 4.13.0, x64. This: "undefined [Finished]" notification happens every time I empty the trash.
I can confirm, Kubuntu 14.04 x64, "undefined" notification is still there. Created attachment 89868 [details]
Screen Grab of notification
I can confirm the bug is still present on Kubuntu 14.04 LTS, KDE 4.13.3 It is present in 14.10 too, KDE 4.14.2. Works for me in KDE Frameworks 5.45. |