added wxCHANGE_DIR test

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12680 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2001-11-25 14:32:01 +00:00
parent 6e8aa701e9
commit fbf4eacb26

View File

@ -418,9 +418,14 @@ void MyFrame::MultiChoice(wxCommandEvent& WXUNUSED(event) )
void MyFrame::FileOpen(wxCommandEvent& WXUNUSED(event) )
{
wxFileDialog dialog(this, "Testing open file dialog",
"", "",
"C++ files (*.h;*.cpp)|*.h;*.cpp");
wxFileDialog dialog
(
this,
_T("Testing open file dialog"),
_T(""),
_T(""),
_T("C++ files (*.h;*.cpp)|*.h;*.cpp")
);
if (dialog.ShowModal() == wxID_OK)
{
@ -447,7 +452,7 @@ void MyFrame::FileOpen2(wxCommandEvent& WXUNUSED(event) )
_T(""), _T(""),
s_extDef,
_T("Waveform (*.wav)|*.wav|Plain text (*.txt)|*.txt|All files (*.*)|*.*"),
0,
wxCHANGE_DIR,
this
);