X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e306597309a120f2ae91385c731a5cb2722c52aa..cc9efb9be731d6827981fb8ddacf60bf1382b31c:/samples/layout/layout.cpp diff --git a/samples/layout/layout.cpp b/samples/layout/layout.cpp index ab66c79b01..54c4b3a740 100644 --- a/samples/layout/layout.cpp +++ b/samples/layout/layout.cpp @@ -21,7 +21,7 @@ #endif #if !wxUSE_CONSTRAINTS -#error You must set wxUSE_CONSTRAINTS to 1 in wx_setup.h! +#error You must set wxUSE_CONSTRAINTS to 1 in setup.h! #endif #include @@ -171,7 +171,8 @@ END_EVENT_TABLE() void MyFrame::LoadFile(wxCommandEvent& WXUNUSED(event) ) { - wxString s = wxFileSelector("Load text file", (const char *) NULL, (const char *) NULL, (const char *) NULL, "*.txt"); + wxString s = wxFileSelector( _T("Load text file"), (const wxChar *) NULL, + (const wxChar *) NULL, (const wxChar *) NULL, _T("*.txt") ); if (s != "") { #ifdef __WXMSW__