X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bddd7a8d8953cf4c09e56c13e1bfcc594ba0267e..8e51701313a307d4dfbbf5493b87aa53537822a5:/include/wx/ffile.h?ds=sidebyside diff --git a/include/wx/ffile.h b/include/wx/ffile.h index 75d546e055..9e8067b9e2 100644 --- a/include/wx/ffile.h +++ b/include/wx/ffile.h @@ -53,7 +53,7 @@ public: bool Close(); // assign an existing file descriptor and get it back from wxFFile object - void Attach(FILE *fp, const wxString& name = wxT("")) + void Attach(FILE *fp, const wxString& name = wxEmptyString) { Close(); m_fp = fp; m_name = name; } void Detach() { m_fp = NULL; } FILE *fp() const { return m_fp; }