Fix typo in wxPGProperty name and add missing parameter of GetVIterator()
call.
Closes #13486.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69149
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
@code
// Add a file selector property.
- wxPGPropety* prop = pg->Append( new wxFileProperty("FileProperty",
- wxPG_LABEL,
- wxEmptyString) );
+ wxPGProperty* prop = pg->Append( new wxFileProperty("FileProperty",
+ wxPG_LABEL,
+ wxEmptyString) );
// Valid: Set wild card by name
pg->SetPropertyAttribute( "FileProperty",
wxPGVIterator it;
- for ( it = manager->GetVIterator();
+ for ( it = manager->GetVIterator(wxPG_ITERATE_ALL);
!it.AtEnd();
it.Next() )
{