mirror of
https://github.com/monero-project/monero-gui
synced 2024-10-31 21:56:42 +01:00
15 lines
294 B
C++
15 lines
294 B
C++
#include "MainApp.h"
|
|
#include <QCloseEvent>
|
|
|
|
bool MainApp::event (QEvent *event)
|
|
{
|
|
// Catch application exit event and signal to qml app to handle exit
|
|
if(event->type() == QEvent::Close) {
|
|
event->ignore();
|
|
emit closing();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|