mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
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:
parent
e8ee4e835e
commit
c69cbceb59
1 changed files with 3 additions and 0 deletions
|
@ -162,7 +162,10 @@ private:
|
||||||
void OnBootGameCubeIPL(DiscIO::Region region);
|
void OnBootGameCubeIPL(DiscIO::Region region);
|
||||||
void OnImportNANDBackup();
|
void OnImportNANDBackup();
|
||||||
void OnConnectWiiRemote(int id);
|
void OnConnectWiiRemote(int id);
|
||||||
|
|
||||||
|
#if defined(__unix__) || defined(__unix) || defined(__APPLE__)
|
||||||
void OnSignal();
|
void OnSignal();
|
||||||
|
#endif
|
||||||
|
|
||||||
void OnUpdateProgressDialog(QString label, int progress, int total);
|
void OnUpdateProgressDialog(QString label, int progress, int total);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue