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
|
@ -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…
Reference in New Issue