mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00: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;
|
||
|
}
|