| Summary: | Closing kfind using the close button does not stop a in-progress search | ||
|---|---|---|---|
| Product: | [Applications] kfind | Reporter: | Vincenzo Ciancia <vincenzo_ml> |
| Component: | general | Assignee: | Eric Coquelle <coquelle> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Fedora RPMs | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | patch to kfinddlg.cpp | ||
|
Description
Vincenzo Ciancia
2005-09-10 17:19:23 UTC
Still there in kde 3.5 Created attachment 13866 [details]
patch to kfinddlg.cpp
it's more than 1 month since I submitted the patch, I emailed Eric Coquelle directly but did not get any reply, what should I do to get this bug fixed? The patch is just one line - I originally thought I was doing a good thing by fixing a small bug myself instead of just reporting it - BTW it took me 1 hour to get the source, understand it (I never saw a qt application before) and fix that stupid bug - maybe in a not so correct way, I don't know. SVN commit 515434 by charis:
Patch by Vincenzo Ciancia, stops searches when user exits kfind
BUG: 112374
M +1 -0 kfinddlg.cpp
--- branches/KDE/3.5/kdebase/kfind/kfinddlg.cpp #515433:515434
@@ -87,6 +87,7 @@
void KfindDlg::closeEvent(QCloseEvent *)
{
+ stopSearch();
slotClose();
}
|