mirror of https://github.com/procxx/kepka.git
fixed update downloader destroy, select message outside message rect from context menu
This commit is contained in:
parent
5aecf2d3a3
commit
9d0f1c4e43
|
@ -179,6 +179,7 @@ void Application::onAppUpdate(const MTPhelp_AppUpdate &response) {
|
||||||
startUpdateCheck();
|
startUpdateCheck();
|
||||||
} else {
|
} else {
|
||||||
updateThread = new QThread();
|
updateThread = new QThread();
|
||||||
|
connect(updateThread, SIGNAL(finished()), updateThread, SLOT(deleteLater()));
|
||||||
updateDownloader = new PsUpdateDownloader(updateThread, response.c_help_appUpdate());
|
updateDownloader = new PsUpdateDownloader(updateThread, response.c_help_appUpdate());
|
||||||
updateThread->start();
|
updateThread->start();
|
||||||
}
|
}
|
||||||
|
@ -201,6 +202,7 @@ void Application::updateGotCurrent() {
|
||||||
int32 currentVersion = m.captured(1).toInt();
|
int32 currentVersion = m.captured(1).toInt();
|
||||||
if (currentVersion > AppVersion) {
|
if (currentVersion > AppVersion) {
|
||||||
updateThread = new QThread();
|
updateThread = new QThread();
|
||||||
|
connect(updateThread, SIGNAL(finished()), updateThread, SLOT(deleteLater()));
|
||||||
updateDownloader = new PsUpdateDownloader(updateThread, m.captured(2));
|
updateDownloader = new PsUpdateDownloader(updateThread, m.captured(2));
|
||||||
updateThread->start();
|
updateThread->start();
|
||||||
}
|
}
|
||||||
|
@ -247,7 +249,7 @@ void Application::onUpdateFailed() {
|
||||||
if (updateDownloader) {
|
if (updateDownloader) {
|
||||||
updateDownloader->deleteLater();
|
updateDownloader->deleteLater();
|
||||||
updateDownloader = 0;
|
updateDownloader = 0;
|
||||||
if (updateThread) updateThread->deleteLater();
|
if (updateThread) updateThread->quit();
|
||||||
updateThread = 0;
|
updateThread = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -477,7 +479,7 @@ void Application::stopUpdate() {
|
||||||
if (updateDownloader) {
|
if (updateDownloader) {
|
||||||
updateDownloader->deleteLater();
|
updateDownloader->deleteLater();
|
||||||
updateDownloader = 0;
|
updateDownloader = 0;
|
||||||
if (updateThread) updateThread->deleteLater();
|
if (updateThread) updateThread->quit();
|
||||||
updateThread = 0;
|
updateThread = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -775,9 +777,9 @@ Application::~Application() {
|
||||||
delete updateReply;
|
delete updateReply;
|
||||||
delete ::uploader;
|
delete ::uploader;
|
||||||
updateReply = 0;
|
updateReply = 0;
|
||||||
delete updateDownloader;
|
if (updateDownloader) updateDownloader->deleteLater();
|
||||||
updateDownloader = 0;
|
updateDownloader = 0;
|
||||||
delete updateThread;
|
if (updateThread) updateThread->quit();
|
||||||
updateThread = 0;
|
updateThread = 0;
|
||||||
|
|
||||||
delete window;
|
delete window;
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
Binary file not shown.
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 97 KiB |
|
@ -711,7 +711,7 @@ void HistoryList::showContextMenu(QContextMenuEvent *e, bool showFromTouch) {
|
||||||
_menu->addAction(lang(lng_context_forward_selected), historyWidget, SLOT(onForwardSelected()));
|
_menu->addAction(lang(lng_context_forward_selected), historyWidget, SLOT(onForwardSelected()));
|
||||||
_menu->addAction(lang(lng_context_delete_selected), historyWidget, SLOT(onDeleteSelected()));
|
_menu->addAction(lang(lng_context_delete_selected), historyWidget, SLOT(onDeleteSelected()));
|
||||||
_menu->addAction(lang(lng_context_clear_selection), historyWidget, SLOT(onClearSelected()));
|
_menu->addAction(lang(lng_context_clear_selection), historyWidget, SLOT(onClearSelected()));
|
||||||
} else {
|
} else if (item) {
|
||||||
if (!_menu) _menu = new ContextMenu(this);
|
if (!_menu) _menu = new ContextMenu(this);
|
||||||
if (isUponSelected != -2) {
|
if (isUponSelected != -2) {
|
||||||
if (canForward) {
|
if (canForward) {
|
||||||
|
@ -723,6 +723,12 @@ void HistoryList::showContextMenu(QContextMenuEvent *e, bool showFromTouch) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_menu->addAction(lang(lng_context_select_msg), historyWidget, SLOT(selectMessage()))->setEnabled(true);
|
_menu->addAction(lang(lng_context_select_msg), historyWidget, SLOT(selectMessage()))->setEnabled(true);
|
||||||
|
} else {
|
||||||
|
if (App::mousedItem() && App::mousedItem()->itemType() == HistoryItem::MsgType) {
|
||||||
|
if (!_menu) _menu = new ContextMenu(this);
|
||||||
|
_menu->addAction(lang(lng_context_select_msg), historyWidget, SLOT(selectMessage()))->setEnabled(true);
|
||||||
|
item = App::mousedItem();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
App::contextItem(item);
|
App::contextItem(item);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue