| Summary: | Minimizing search for articles dialog closes it | ||
|---|---|---|---|
| Product: | [Unmaintained] knode | Reporter: | Volker Augustin <vaugustin> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Other | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Volker Augustin
2002-04-06 10:19:42 UTC
Hi, I'm runnign KNode from CVS and it does not seem to have a minimize button on the search for articles dialog. Which window manager do you use ? Thanks No response and I cannot reproduce -> closing. Reproduceable with CVS HEAD, also reported in #85432. CVS commit by schrot: - save pgp key (93908) - don't close search dialog when it is minimised (40266) - add macros to custom headers (22101) - exclude ignored messages from unread count (41973) I will backport where appropriate. BUG: 93908, 40266, 22101, 41973 M +9 -2 knode/knarticlefactory.cpp 1.84 M +7 -2 knode/knconfigwidgets.cpp 1.121 M +7 -4 knode/kngroup.cpp 1.78 M +1 -0 knode/kngroup.h 1.33 M +1 -7 knode/knsearchdialog.cpp 1.19 M +0 -2 knode/knsearchdialog.h 1.9 M +6 -1 libkpgp/kpgpui.cpp 1.59 M +1 -0 libkpgp/kpgpui.h 1.25 CVS commit by schrot:
Backport 40266:
- don't close search dialog when it is minimised
CCBUG: 40266
M +1 -7 knsearchdialog.cpp 1.18.2.1
M +0 -2 knsearchdialog.h 1.8.12.1
--- kdepim/knode/knsearchdialog.cpp #1.18:1.18.2.1
@@ -83,10 +83,4 @@ KNSearchDialog::~KNSearchDialog()
-void KNSearchDialog::hideEvent(QHideEvent *)
-{
- emit dialogDone();
-}
-
-
void KNSearchDialog::slotStartClicked()
{
--- kdepim/knode/knsearchdialog.h #1.8:1.8.12.1
@@ -38,6 +38,4 @@ class KNSearchDialog : public QDialog {
protected:
- void hideEvent(QHideEvent *e);
-
KNFilterConfigWidget *fcw;
QPushButton *startBtn, *newBtn, *closeBtn;
|