diff options
Diffstat (limited to 'src/mainwindow')
-rw-r--r-- | src/mainwindow/mainwindow.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mainwindow/mainwindow.cpp b/src/mainwindow/mainwindow.cpp index 77b8ad3..cc67b3d 100644 --- a/src/mainwindow/mainwindow.cpp +++ b/src/mainwindow/mainwindow.cpp @@ -89,6 +89,16 @@ MainWindow::MainWindow(const std::unique_ptr<Configuration> &config, QWidget *pa } show(); +#ifdef QT_DEBUG + { + auto *debugMenu = ui->menubar->addMenu(tr("Debug")); + + debugMenu->addAction(tr("Crash"), []() { + delete reinterpret_cast<QString*>(0xFEE1DEAD); + }); + }; +#endif + // connect smolbote menu { connect(ui->actionNewSubwindow, &QAction::triggered, this, [this, &config]() { |