diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-03-29 09:11:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-29 09:11:34 -0400 |
commit | 8bdc51b620f0778f53d76ad9368da97a9213d631 (patch) | |
tree | 2a71c944643cda0ab019c22d1d46d58552f002ff /src/yuzu/applets/qt_profile_select.h | |
parent | 9c96d40586d89fd39b1bc80455542a1e54d10dee (diff) | |
parent | 50a59487eb49baa229d553dd9a3c00aef20f799f (diff) |
Merge pull request #9505 from liamwhite/request-exit
applets: implement RequestExit
Diffstat (limited to 'src/yuzu/applets/qt_profile_select.h')
-rw-r--r-- | src/yuzu/applets/qt_profile_select.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/applets/qt_profile_select.h b/src/yuzu/applets/qt_profile_select.h index 637a3bda2..9f214d071 100644 --- a/src/yuzu/applets/qt_profile_select.h +++ b/src/yuzu/applets/qt_profile_select.h @@ -65,10 +65,12 @@ public: explicit QtProfileSelector(GMainWindow& parent); ~QtProfileSelector() override; + void Close() const override; void SelectProfile(SelectProfileCallback callback_) const override; signals: void MainWindowSelectProfile() const; + void MainWindowRequestExit() const; private: void MainWindowFinishedSelection(std::optional<Common::UUID> uuid); |