From e18723d66cf470720c29a9d2848150ea1cbe5450 Mon Sep 17 00:00:00 2001 From: Sine Striker <trueful@163.com> Date: ćšć, 14 12æ 2023 04:49:35 +0800 Subject: [PATCH] Add example resources --- examples/mainwindow/mainwindow.h | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/examples/mainwindow/mainwindow.h b/examples/mainwindow/mainwindow.h index 46f23d3..cfed3a6 100644 --- a/examples/mainwindow/mainwindow.h +++ b/examples/mainwindow/mainwindow.h @@ -4,11 +4,15 @@ #include <QtWidgets/QMainWindow> class MainWindow : public QMainWindow { + Q_OBJECT public: explicit MainWindow(QWidget *parent = nullptr); - ~MainWindow(); + ~MainWindow() override; protected: + bool event(QEvent *event) override; + +private: void installWindowAgent(); }; -- Gitblit v1.9.1