DolphinQt/MainWindow: Surround prototype of OnSignal() with relevant ifdef

This is only used on Apple and Unix-like machines, so we can enclose the
prototype with an ifdef like the implementation is. This prevents
false-positives about an unimplemented function prototype.
This commit is contained in:
Lioncash 2020-01-27 15:26:39 -05:00
parent e8ee4e835e
commit c69cbceb59
1 changed files with 3 additions and 0 deletions

View File

@ -162,7 +162,10 @@ private:
void OnBootGameCubeIPL(DiscIO::Region region);
void OnImportNANDBackup();
void OnConnectWiiRemote(int id);
#if defined(__unix__) || defined(__unix) || defined(__APPLE__)
void OnSignal();
#endif
void OnUpdateProgressDialog(QString label, int progress, int total);