fixed access violation into Storage::Unsubscribe upon deletion of UpdateDialog.

This commit is contained in:
rachytski 2012-06-02 21:25:02 +04:00 committed by Alex Zolotarev
parent 3ce3645210
commit 21b63475a7
3 changed files with 7 additions and 2 deletions

View file

@ -143,6 +143,10 @@ bool MainWindow::winEvent(MSG * msg, long * result)
MainWindow::~MainWindow()
{
SaveState();
#ifndef NO_DOWNLOADER
if (m_updateDialog)
m_updateDialog->DetachFromStorage();
#endif
}
void MainWindow::SaveState()

View file

@ -88,7 +88,7 @@ namespace qt
bind(&UpdateDialog::OnCountryDownloadProgress, this, _1, _2));
}
UpdateDialog::~UpdateDialog()
void UpdateDialog::DetachFromStorage()
{
// tell download manager that we're gone...
m_storage.Unsubscribe(m_observerSlotId);

View file

@ -17,7 +17,6 @@ namespace qt
public:
explicit UpdateDialog(QWidget * parent, storage::Storage & storage);
~UpdateDialog();
/// @name Called from downloader to notify GUI
//@{
@ -28,6 +27,8 @@ namespace qt
void ShowModal();
void DetachFromStorage();
private slots:
void OnItemClick(QTreeWidgetItem * item, int column);
void OnCloseClick();