allow multiple extensions in tge generic wxFileDialog (patch 457580)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11719 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-09-28 14:26:55 +00:00
parent afb74fdd76
commit 551adc4b47
2 changed files with 19 additions and 13 deletions

View File

@@ -399,9 +399,9 @@ void MyFrame::MultiChoice(wxCommandEvent& WXUNUSED(event) )
void MyFrame::FileOpen(wxCommandEvent& WXUNUSED(event) )
{
// wxFAIL_MSG( "Test assert" );
wxFileDialog dialog(this, "Testing open file dialog", "", "", "*.txt", 0);
wxFileDialog dialog(this, "Testing open file dialog",
"", "",
"C++ files (*.h;*.cpp)|*.h;*.cpp");
if (dialog.ShowModal() == wxID_OK)
{