From 5b2724c90073f93bc09b10b167ebd4f54288c25f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 26 Feb 2016 20:08:20 +0100 Subject: [PATCH] Fix return type of wxListCtrl::EnableCheckboxes() in the documentation It returns bool, not void. --- interface/wx/listctrl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/listctrl.h b/interface/wx/listctrl.h index e4a1e44233..cfe47e97df 100644 --- a/interface/wx/listctrl.h +++ b/interface/wx/listctrl.h @@ -1244,7 +1244,7 @@ public: @since 3.1.0 */ - void EnableCheckboxes(bool enable = true); + bool EnableCheckboxes(bool enable = true); /** Return true if the checkbox for the given wxListItem is checked.