X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3c0ce340237e30bbc03e0e419d5a6d97a04dac6..26ab89ad4d7e3f7188e21c3d788fa3b9e9894bee:/include/wx/ffile.h diff --git a/include/wx/ffile.h b/include/wx/ffile.h index fcc212c96a..9e8067b9e2 100644 --- a/include/wx/ffile.h +++ b/include/wx/ffile.h @@ -6,7 +6,7 @@ // Created: 14.07.99 // RCS-ID: $Id$ // Copyright: (c) 1998 Vadim Zeitlin -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_FFILE_H_ @@ -34,7 +34,7 @@ // dtor which is _not_ virtual, so it shouldn't be used as a base class. // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxFFile +class WXDLLIMPEXP_BASE wxFFile { public: // ctors @@ -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; }