Add missing index initialization in one of wxEnumProperty ctor.

In every wxEnumProperty ctor, initial index value of selected choice must be set to zero.

See #16401.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76993 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Artur Wieczorek 2014-08-03 15:22:54 +00:00
parent bd2a350c42
commit 55a385d7ad

View File

@ -1159,6 +1159,8 @@ wxEnumProperty::wxEnumProperty( const wxString& label, const wxString& name,
wxPGChoices& choices, int value ) wxPGChoices& choices, int value )
: wxPGProperty(label,name) : wxPGProperty(label,name)
{ {
SetIndex(0);
m_choices.Assign( choices ); m_choices.Assign( choices );
if ( GetItemCount() ) if ( GetItemCount() )