From 6fbdd267e5d8f91ead7078416c2a5a780a31f9ad Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 10 Mar 2012 14:26:26 +0000 Subject: [PATCH] Fix wxComboCtrl::SetHint() return type in the documentation. It is now bool, not void, as for wxTextEntry::SetHint(). Closes #14083. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70867 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/combo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/combo.h b/interface/wx/combo.h index d6e219350e..870780d05e 100644 --- a/interface/wx/combo.h +++ b/interface/wx/combo.h @@ -694,7 +694,7 @@ public: @since 2.9.1 */ - virtual void SetHint(const wxString& hint); + virtual bool SetHint(const wxString& hint); /** Sets the insertion point in the text field.