From b60323add401625b8b4cc9aba8b958a410551fa1 Mon Sep 17 00:00:00 2001 From: Ivan Loskutov Date: Wed, 29 Sep 2010 19:42:49 +0400 Subject: [PATCH] Fixed exit confirmation dialog --- src/systeminstaller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systeminstaller.cpp b/src/systeminstaller.cpp index 3125d2c..f68eeb9 100644 --- a/src/systeminstaller.cpp +++ b/src/systeminstaller.cpp @@ -264,7 +264,7 @@ void SystemInstaller::closeEvent ( QCloseEvent* event ) return; } - QMessageBox quest; + QMessageBox quest(this); quest.setWindowTitle( tr("Attention") ); quest.setText( tr("Do you want to abort the installation now?") ); quest.setStandardButtons( QMessageBox::Yes | QMessageBox::No );