qt: Make splash and shutdown window ignore close events
It's strange to be able to close these windows while there is work in progress. Also set Qt::WA_DeleteOnClose on both windows to make sure that they are deleted eventually, no matter what happens.
This commit is contained in:
@@ -37,12 +37,16 @@ private slots:
|
||||
|
||||
|
||||
/** "Shutdown" window */
|
||||
class ShutdownWindow : public QObject
|
||||
class ShutdownWindow : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
ShutdownWindow(QWidget *parent=0, Qt::WindowFlags f=0);
|
||||
static void showShutdownWindow(BitcoinGUI *window);
|
||||
|
||||
protected:
|
||||
void closeEvent(QCloseEvent *event);
|
||||
};
|
||||
|
||||
#endif // UTILITYDIALOG_H
|
||||
|
||||
Reference in New Issue
Block a user