mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
- Search process is now stopped cleanly before exit to avoid error messages in console
This commit is contained in:
parent
825c874718
commit
950072c696
2 changed files with 4 additions and 1 deletions
|
@ -20,6 +20,7 @@
|
||||||
- BUGFIX: Preventing GUI from freezing when deleting a download permanently
|
- BUGFIX: Preventing GUI from freezing when deleting a download permanently
|
||||||
- BUGFIX: Fixed directory scanning (stop trying to download the same files several times)
|
- BUGFIX: Fixed directory scanning (stop trying to download the same files several times)
|
||||||
- BUGFIX: Fixed bad loading of scan dir in option (widgets still disabled)
|
- BUGFIX: Fixed bad loading of scan dir in option (widgets still disabled)
|
||||||
|
- BUGFIX: Threads are now stopped cleanly before their destruction
|
||||||
- I18N: Better internationalization thanks to dynamic text support
|
- I18N: Better internationalization thanks to dynamic text support
|
||||||
- COSMETIC: Replaced OSD messages by Qt4.2 systray messages
|
- COSMETIC: Replaced OSD messages by Qt4.2 systray messages
|
||||||
|
|
||||||
|
|
|
@ -261,9 +261,11 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){
|
||||||
// Destructor
|
// Destructor
|
||||||
GUI::~GUI(){
|
GUI::~GUI(){
|
||||||
qDebug("GUI destruction");
|
qDebug("GUI destruction");
|
||||||
|
searchProcess->kill();
|
||||||
|
searchProcess->waitForFinished();
|
||||||
|
delete searchProcess;
|
||||||
delete options;
|
delete options;
|
||||||
delete checkConnect;
|
delete checkConnect;
|
||||||
delete searchProcess;
|
|
||||||
delete refresher;
|
delete refresher;
|
||||||
delete myTrayIcon;
|
delete myTrayIcon;
|
||||||
delete myTrayIconMenu;
|
delete myTrayIconMenu;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue