X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a1b82138efe9aacda4e0ad7ce4b1551d624524c4..794bcc2dea743ac907b839f54e451847c9ea4b72:/include/wx/ffile.h?ds=sidebyside diff --git a/include/wx/ffile.h b/include/wx/ffile.h index 6a3f6fdb9e..4695dc989b 100644 --- a/include/wx/ffile.h +++ b/include/wx/ffile.h @@ -51,7 +51,7 @@ public: bool Close(); // assign an existing file descriptor and get it back from wxFFile object - void Attach(FILE *fp, const wxString& name = _T("")) + void Attach(FILE *fp, const wxString& name = wxT("")) { Close(); m_fp = fp; m_name = name; } void Detach() { m_fp = NULL; } FILE *fp() const { return m_fp; }