]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove the GetItemHeight sample from samples/checklst as it exists only on wxGTK...
authorMart Raudsepp <leio@gentoo.org>
Tue, 7 Mar 2006 06:37:29 +0000 (06:37 +0000)
committerMart Raudsepp <leio@gentoo.org>
Tue, 7 Mar 2006 06:37:29 +0000 (06:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37849 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/checklst/checklst.cpp

index ed5f70f12761f4c5973ce7427c099f87644cd050..9ae58191f42671ac7807eb608c4dadb9573f50f4 100644 (file)
@@ -66,7 +66,6 @@ public:
     void OnAppendItems(wxCommandEvent& event);
     void OnRemoveItems(wxCommandEvent& event);
 
-    void OnGetItemHeight(wxCommandEvent& event);
     void OnGetBestSize(wxCommandEvent& event);
 
     void OnMakeItemFirst(wxCommandEvent& event);
@@ -108,7 +107,6 @@ enum
     Menu_InsertItemsEnd,
     Menu_AppendItems,
     Menu_RemoveItems,
-    Menu_GetItemHeight,
     Menu_GetBestSize,
     Menu_MakeItemFirst,
 
@@ -136,7 +134,6 @@ BEGIN_EVENT_TABLE(CheckListBoxFrame, wxFrame)
     EVT_MENU(Menu_AppendItems, CheckListBoxFrame::OnAppendItems)
     EVT_MENU(Menu_RemoveItems, CheckListBoxFrame::OnRemoveItems)
 
-    EVT_MENU(Menu_GetItemHeight, CheckListBoxFrame::OnGetItemHeight)
     EVT_MENU(Menu_GetBestSize, CheckListBoxFrame::OnGetBestSize)
 
     EVT_MENU(Menu_MakeItemFirst, CheckListBoxFrame::OnMakeItemFirst)
@@ -201,7 +198,6 @@ CheckListBoxFrame::CheckListBoxFrame(wxFrame *frame,
     menuList->AppendCheckItem(Menu_Extended, _T("Extended selection"));
     menuList->AppendCheckItem(Menu_Sorting, _T("Sorting"));
     menuList->AppendSeparator();
-    menuList->Append(Menu_GetItemHeight, _T("Get the height of an item"));
     menuList->Append(Menu_GetBestSize, _T("Get the best size of the checklistbox control"));
     menuList->AppendSeparator();
     menuList->Append(Menu_MakeItemFirst, _T("Make selected item the first item"));
@@ -367,16 +363,6 @@ void CheckListBoxFrame::OnRemoveItems(wxCommandEvent& WXUNUSED(event))
         m_pListBox->Delete(0);
 }
 
-void CheckListBoxFrame::OnGetItemHeight(wxCommandEvent& WXUNUSED(event))
-{
-    int height = m_pListBox->GetItemHeight();
-
-    wxMessageBox(wxString::Format(wxT("Height of an item is:%i"),
-                                  height
-                                 )
-                );
-}
-
 void CheckListBoxFrame::OnGetBestSize(wxCommandEvent& WXUNUSED(event))
 {
     wxSize bestSize = m_pListBox->GetBestSize();