Compilation fixes.

This commit is contained in:
vng 2012-06-04 16:36:42 -07:00 committed by Alex Zolotarev
parent 6ec4fcf436
commit 448743c7b6
3 changed files with 2 additions and 7 deletions

View file

@ -143,10 +143,6 @@ 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));
}
void UpdateDialog::DetachFromStorage()
UpdateDialog::~UpdateDialog()
{
// tell download manager that we're gone...
m_storage.Unsubscribe(m_observerSlotId);

View file

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