X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7d4911333fc8fedcb8d02974394f30e4286b5a56..c92e136d9a2d9919fc747d109610cd4d16c6cc91:/interface/wx/timer.h diff --git a/interface/wx/timer.h b/interface/wx/timer.h index 997422d447..e74e836b92 100644 --- a/interface/wx/timer.h +++ b/interface/wx/timer.h @@ -3,7 +3,7 @@ // Purpose: interface of wxTimer // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -149,11 +149,12 @@ public: private: wxTimer m_timer; + wxDECLARE_EVENT_TABLE(); }; - BEGIN_EVENT_TABLE(MyFrame, wxFrame) + wxBEGIN_EVENT_TABLE(MyFrame, wxFrame) EVT_TIMER(TIMER_ID, MyFrame::OnTimer) - END_EVENT_TABLE() + wxEND_EVENT_TABLE() MyFrame::MyFrame() : m_timer(this, TIMER_ID)