Fix macOS build due to the inappropriate QTimer pointer
The type of `m_clipboardMonitorTimer` is unintentionally modified in 5d970ddd48
, which causes failing build on macOS.
This commit is contained in:
parent
14543fcba5
commit
9b5871523d
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ private:
|
|||
void updateClipboard(QClipboard::Mode mode);
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
QTimer *m_clipboardMonitorTimer;
|
||||
QTimer m_clipboardMonitorTimer;
|
||||
#endif
|
||||
KSystemClipboard *clipboard;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue