mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
DolphinQt2: Remove 'slots:' syntax from headers
With Qt5's new connection syntax, method pointers and functors are connected directly. There's no need to declare slots.
This commit is contained in:
@ -36,7 +36,7 @@ signals:
|
||||
void EmulationPaused();
|
||||
void EmulationStopped();
|
||||
|
||||
private slots:
|
||||
private:
|
||||
void Open();
|
||||
void Play();
|
||||
void Pause();
|
||||
@ -63,7 +63,6 @@ private slots:
|
||||
void FullScreen();
|
||||
void ScreenShot();
|
||||
|
||||
private:
|
||||
void CreateComponents();
|
||||
|
||||
void ConnectGameList();
|
||||
|
Reference in New Issue
Block a user