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
This commit is contained in:
George Tasker
2000-04-30 15:30:05 +00:00
parent bb5aa6e588
commit 0187c87a03

View File

@@ -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;