1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-02 07:41:23 +01:00
monero-gui/MainApp.cpp

15 lines
294 B
C++
Raw Normal View History

2017-03-01 22:03:50 +01:00
#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;
}