Merge branch 'rename-listctrl-checkbox-methods' of https://github.com/discnl/wxWidgets
Use consistent case for wxListCtrl::{Has,Enable}CheckBoxes() methods. Closes https://github.com/wxWidgets/wxWidgets/pull/275
This commit is contained in:
@@ -1249,11 +1249,11 @@ public:
|
||||
/**
|
||||
Returns true if checkboxes are enabled for list items.
|
||||
|
||||
@see EnableCheckboxes()
|
||||
@see EnableCheckBoxes()
|
||||
|
||||
@since 3.1.0
|
||||
*/
|
||||
bool HasCheckboxes() const;
|
||||
bool HasCheckBoxes() const;
|
||||
|
||||
/**
|
||||
Enable or disable checkboxes for list items.
|
||||
@@ -1263,7 +1263,7 @@ public:
|
||||
|
||||
@since 3.1.0
|
||||
*/
|
||||
bool EnableCheckboxes(bool enable = true);
|
||||
bool EnableCheckBoxes(bool enable = true);
|
||||
|
||||
/**
|
||||
Return true if the checkbox for the given wxListItem is checked.
|
||||
@@ -1280,7 +1280,7 @@ public:
|
||||
Check or uncheck a wxListItem in a control using checkboxes.
|
||||
|
||||
This method only works if checkboxes support had been successfully
|
||||
enabled using EnableCheckboxes().
|
||||
enabled using EnableCheckBoxes().
|
||||
|
||||
@param item Item (zero-based) index.
|
||||
@param check If @true, check the item, otherwise uncheck.
|
||||
|
Reference in New Issue
Block a user