X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/792255cc6d3dfd55626c821bb8fdea48bfe919ba..fcd209b6a20b41e7ddf9acf837311ac6779ea41f:/interface/wx/checklst.h diff --git a/interface/wx/checklst.h b/interface/wx/checklst.h index bb1421167f..40901ece48 100644 --- a/interface/wx/checklst.h +++ b/interface/wx/checklst.h @@ -15,11 +15,6 @@ When using this class under Windows wxWidgets must be compiled with wxUSE_OWNER_DRAWN set to 1. - Only the new functions for this class are documented; see also wxListBox. - - Please note that wxCheckListBox uses client data in its implementation, - and therefore this is not available to the application. - @beginEventTable{wxCommandEvent} @event{EVT_CHECKLISTBOX(id, func)} Process a wxEVT_COMMAND_CHECKLISTBOX_TOGGLED event, when an item in @@ -28,7 +23,7 @@ @library{wxcore} @category{ctrl} - + @appearance{checklistbox.png} @see wxListBox, wxChoice, wxComboBox, wxListCtrl, wxCommandEvent */ @@ -105,7 +100,7 @@ public: /** Destructor, destroying the list box. */ - ~wxCheckListBox(); + virtual ~wxCheckListBox(); /** Checks the given item. Note that calling this method does not result in @@ -116,7 +111,7 @@ public: @param check @true if the item is to be checked, @false otherwise. */ - void Check(int item, bool check = true); + void Check(unsigned int item, bool check = true); /** Returns @true if the given item is checked, @false otherwise.