git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12680
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
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)
{
_T(""), _T(""),
s_extDef,
_T("Waveform (*.wav)|*.wav|Plain text (*.txt)|*.txt|All files (*.*)|*.*"),
- 0,
+ wxCHANGE_DIR,
this
);