[desktop] thank you Qt Documentation, very cool

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-08-07 18:45:47 -04:00
parent 0faf988fd5
commit 1851c7552f
Signed by untrusted user: crueter
GPG key ID: 425ACD2D4830EBC6
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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