diff --git a/samples/listctrl/listtest.cpp b/samples/listctrl/listtest.cpp index 7250a74c38..c472a5fb2c 100644 --- a/samples/listctrl/listtest.cpp +++ b/samples/listctrl/listtest.cpp @@ -162,11 +162,11 @@ bool MyApp::OnInit() // My frame constructor MyFrame::MyFrame(const wxChar *title) - : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxDefaultSize)) + : wxFrame(NULL, wxID_ANY, title) { if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_SMALL) SetSize(wxSize(450, 340)); - + m_listCtrl = NULL; m_logWindow = NULL; m_smallVirtual = false; @@ -1084,4 +1084,3 @@ void MyListCtrl::ShowContextMenu(const wxPoint& pos) PopupMenu(&menu, pos.x, pos.y); } - diff --git a/samples/listctrl/listtest.h b/samples/listctrl/listtest.h index adbc329c22..2673ce0e98 100644 --- a/samples/listctrl/listtest.h +++ b/samples/listctrl/listtest.h @@ -71,11 +71,14 @@ public: void OnCacheHint(wxListEvent& event); void OnChar(wxKeyEvent& event); + #if USE_CONTEXT_MENU void OnContextMenu(wxContextMenuEvent& event); #endif private: + void ShowContextMenu(const wxPoint& pos); + wxLog *m_logOld; void SetColumnImage(int col, int image); void LogEvent(const wxListEvent& event, const wxChar *eventName); @@ -201,4 +204,3 @@ enum LIST_CTRL = 1000 }; -