Example #1
0
void wxGenericFileDialog::OnChoiceFilter( wxCommandEvent &event )
{
    DoSetFilterIndex((int)event.GetInt());
}
void FILEDIALOG::OnChoiceFilter( wxCommandEvent &event )
{
   DoSetFilterIndex((int)event.GetInt());
}
Example #3
0
void wxGenericFileDialog::SetFilterIndex( int filterindex )
{
    m_choice->SetSelection( filterindex );

    DoSetFilterIndex(filterindex);
}
void FILEDIALOG::SetFilterIndex( int filterindex )
{
   m_choice->SetSelection( filterindex );
   
   DoSetFilterIndex(filterindex);
}