From 9cd566789df0ea3c4f8b89652cddb1d0de433686 Mon Sep 17 00:00:00 2001 From: Graham Dawes Date: Thu, 24 Jan 2019 08:08:12 +0000 Subject: [PATCH] Added file missing from previous commit --- include/wx/qt/evtloop.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/include/wx/qt/evtloop.h b/include/wx/qt/evtloop.h index dbdbd6a5a0..5419916281 100644 --- a/include/wx/qt/evtloop.h +++ b/include/wx/qt/evtloop.h @@ -8,7 +8,7 @@ #ifndef _WX_QT_EVTLOOP_H_ #define _WX_QT_EVTLOOP_H_ -class QTimer; +class wxQtIdleTimer; class QEventLoop; class WXDLLIMPEXP_CORE wxQtEventLoopBase : public wxEventLoopBase @@ -30,12 +30,11 @@ public: #if wxUSE_EVENTLOOP_SOURCE virtual wxEventLoopSource *AddSourceForFD(int fd, wxEventLoopSourceHandler *handler, int flags); #endif // wxUSE_EVENTLOOP_SOURCE -protected: private: QEventLoop *m_qtEventLoop; - QTimer *m_qtIdleTimer; - + wxObjectDataPtr m_qtIdleTimer; + wxDECLARE_NO_COPY_CLASS(wxQtEventLoopBase); };