// ctor & dtor
CheckListBoxFrame(wxFrame *frame, const wxChar *title,
int x, int y, int w, int h);
- virtual ~CheckListBoxFrame();
+ virtual ~CheckListBoxFrame(){};
// notifications
void OnQuit(wxCommandEvent& event);
m_pListBox->Select(3);
}
-CheckListBoxFrame::~CheckListBoxFrame()
-{
-}
-
void CheckListBoxFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
{
Close(true);
void CheckListBoxFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
- wxMessageBox(wxT("Demo of wxCheckListBox control\n© Vadim Zeitlin 1998-2002"),
+ wxMessageBox(wxT("Demo of wxCheckListBox control\n(c) Vadim Zeitlin 1998-2002"),
wxT("About wxCheckListBox"),
wxICON_INFORMATION, this);
}