X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bddd7a8d8953cf4c09e56c13e1bfcc594ba0267e..47cd661014b0bcf3311d8b6b01e87a13a04a2465:/include/wx/ffile.h?ds=inline 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; }