[compat] fix solaris Qt build #194

Merged
crueter merged 6 commits from solariscompat22 into master 2025-08-15 04:12:45 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit a310e55962 - Show all commits

View file

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

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