From 0187c87a03a098967af7b1a16cb85109a28642fd Mon Sep 17 00:00:00 2001 From: George Tasker Date: Sun, 30 Apr 2000 15:30:05 +0000 Subject: [PATCH] Removed semicolon from the end of DECLARE_EVENT_TABLE() lines that prevented BC5 from compiling this sample git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7320 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/regtest/regtest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/regtest/regtest.cpp b/samples/regtest/regtest.cpp index f1960608af..5b4f384aed 100644 --- a/samples/regtest/regtest.cpp +++ b/samples/regtest/regtest.cpp @@ -162,7 +162,7 @@ public: void AddStdKeys(); private: - DECLARE_EVENT_TABLE(); + DECLARE_EVENT_TABLE() }; // ---------------------------------------------------------------------------- @@ -194,7 +194,7 @@ public: void OnInfo (wxCommandEvent& event); - DECLARE_EVENT_TABLE(); + DECLARE_EVENT_TABLE() private: RegTreeCtrl *m_treeCtrl;