From a310e559621c21b31138d256b10ab729a75f6cf7 Mon Sep 17 00:00:00 2001 From: lizzie Date: Wed, 13 Aug 2025 08:32:43 +0100 Subject: [PATCH] [desktop] thank you Qt Documentation, very cool Signed-off-by: crueter Signed-off-by: lizzie --- src/yuzu/main.cpp | 2 +- src/yuzu/main.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 567a20c4de..4e0ff685bf 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1908,7 +1908,7 @@ void GMainWindow::HandleSigInterrupt(int sig) { (void)ret; } -void GMainWindow::OnSigInterruptNotifierActivated(QSocketDescriptor _, QSocketNotifier::Type _) { +void GMainWindow::OnSigInterruptNotifierActivated() { sig_interrupt_notifier->setEnabled(false); char a; diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 3b3403f7ac..c7dd2a45fa 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -326,7 +326,7 @@ private: #ifdef __unix__ void SetupSigInterrupts(); static void HandleSigInterrupt(int); - void OnSigInterruptNotifierActivated(QSocketDescriptor socket, QSocketNotifier::Type type); + void OnSigInterruptNotifierActivated(); void SetGamemodeEnabled(bool state); #endif