| Summary: | Kget quits without warning when transfers are in progress | ||
|---|---|---|---|
| Product: | [Applications] kget | Reporter: | virgilg |
| Component: | general | Assignee: | KGet bugs <kget-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
virgilg
2003-04-18 23:36:37 UTC
Subject: Re: Kget quits without warning when transfers are in progress On Monday 26 May 2003 03:46, you wrote: I'll have a look at it mid of June, when I have time, unless someone else beats me to it. Cheers Carsten Pfeiffer -----BEGIN PGP SIGNATURE----- iQEVAwUBPtHSeqWgYMJuwmZtAQEzRwf/Yxdj3P6XZ7gl2nviRAGx3WFgPN4HFyQ6 un1COqhvTOiMjjcewJLIR46VD9BjORxiwwPIpx4K2peY1W6Ync8IgvNY+Qk91Cw1 XYkb74AQ5RLTNpShWXnOw29Weqc5gLSxdDe4F+pyyCJWgvKtp6UvBEUy7xTS/h73 ZTR1sdrMnMVPhy/Jh9Ohg1u0XdRDEg9hgoRFybowZX6f683Q3qfDW1mylRSsAqc7 0L/ye6BV/Fzhl/Ppw6zdHafwRA2C138AfgH1VMcyb47jCiU7BP2YLbk8DsFgDs4P wOzMJk+5B5bCGlpgyOMdVhiU/9Buf6oD25FR5tnD70NFnFeNu3gheA== =Vfqn -----END PGP SIGNATURE----- SVN commit 438216 by uwolfer:
Don't hide mainwindow after canceling quit-warning.
BUG: 57430
Correction in docking.h (my mistake).
M +1 -1 docking.h
M +1 -1 kmainwidget.cpp
--- trunk/KDE/kdenetwork/kget/docking.h #438215:438216
@@ -60,7 +60,7 @@
~DockWidget();
/** No descriptions */
void updateToolTip( const QString& );
- void changeIcon( const QString& icon );
+ void changeIcon( const QString& );
--- trunk/KDE/kdenetwork/kget/kmainwidget.cpp #438215:438216
@@ -1586,7 +1586,7 @@
{
if( kapp->sessionSaving())
return true;
- hide();
+ //hide();
return false;
}
SVN commit 438224 by uwolfer: Revert my change for bug #57430 because there's an unwanted side effect. CCBUG: 57430 M +1 -1 kmainwidget.cpp --- trunk/KDE/kdenetwork/kget/kmainwidget.cpp #438223:438224 @@ -1586,7 +1586,7 @@ { if( kapp->sessionSaving()) return true; - //hide(); + hide(); return false; } See commit message above. This report is not valid anymore for KGet trunk (KDE 4). |