From 1851c7552fa5c9506fbaddf37077ad7fcd3fcb1a Mon Sep 17 00:00:00 2001 From: crueter Date: Thu, 7 Aug 2025 18:45:47 -0400 Subject: [PATCH] [desktop] thank you Qt Documentation, very cool Signed-off-by: crueter --- 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 910472b1ac..897fd228f2 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1821,7 +1821,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 a568b57554..9021c26005 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