From: Jaakko Salli Date: Thu, 25 Sep 2008 17:00:49 +0000 (+0000) Subject: Removed redundant wxPGProperty::SetChoices() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/47ea393a24b7781f2a15264d30f4ebe32aa6e9bb Removed redundant wxPGProperty::SetChoices() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55877 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/propgrid/property.h b/include/wx/propgrid/property.h index b19ab1dfab..45ba8c6504 100644 --- a/include/wx/propgrid/property.h +++ b/include/wx/propgrid/property.h @@ -1859,15 +1859,6 @@ public: */ bool SetChoices( wxPGChoices& choices ); - /** Sets new set of choices for property. - */ - bool SetChoices( const wxArrayString& labels, - const wxArrayInt& values = wxArrayInt() ) - { - wxPGChoices chs(labels, values); - return SetChoices(chs); - } - /** Set max length of text in text editor. */ inline bool SetMaxLength( int maxLen );