mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-29 09:32:42 +00:00
Qt: remove Q_OBJECT for mouse/kb handlers
Had to move QObject in parent list for g_fxo changes.
This commit is contained in:
parent
4f85f151fd
commit
a6a92f7b6b
@ -6,9 +6,9 @@
|
||||
#include <QKeyEvent>
|
||||
#include <QWindow>
|
||||
|
||||
class basic_keyboard_handler final : public QObject, public KeyboardHandlerBase
|
||||
class basic_keyboard_handler final : public KeyboardHandlerBase, public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
//Q_OBJECT
|
||||
public:
|
||||
virtual void Init(const u32 max_connect) override;
|
||||
|
||||
|
@ -7,9 +7,9 @@
|
||||
#include <QMouseEvent>
|
||||
#include <QWheelEvent>
|
||||
|
||||
class basic_mouse_handler final : public QObject, public MouseHandlerBase
|
||||
class basic_mouse_handler final : public MouseHandlerBase, public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
//Q_OBJECT
|
||||
public:
|
||||
virtual void Init(const u32 max_connect) override;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user