| 432 | } |
| 433 | |
| 434 | bool BitcoinApplication::event(QEvent* e) |
| 435 | { |
| 436 | if (e->type() == QEvent::Quit) { |
| 437 | requestShutdown(); |
| 438 | return true; |
| 439 | } |
| 440 | |
| 441 | return QApplication::event(e); |
| 442 | } |
| 443 | |
| 444 | static void SetupUIArgs(ArgsManager& argsman) |
| 445 | { |
no test coverage detected