X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6626de903e54f907fed5737b61344e31f86262eb..66c2bf7b1d9326fb650acfaae22ec50528cfbf7c:/include/wx/ffile.h diff --git a/include/wx/ffile.h b/include/wx/ffile.h index fff114e2a4..ae827dd785 100644 --- a/include/wx/ffile.h +++ b/include/wx/ffile.h @@ -4,7 +4,6 @@ // Author: Vadim Zeitlin // Modified by: // Created: 14.07.99 -// RCS-ID: $Id$ // Copyright: (c) 1998 Vadim Zeitlin // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -37,13 +36,13 @@ public: // def ctor wxFFile() { m_fp = NULL; } // open specified file (may fail, use IsOpened()) - wxFFile(const wxString& filename, const wxString& mode = _T("r")); + wxFFile(const wxString& filename, const wxString& mode = wxT("r")); // attach to (already opened) file wxFFile(FILE *lfp) { m_fp = lfp; } // open/close // open a file (existing or not - the mode controls what happens) - bool Open(const wxString& filename, const wxString& mode = _T("r")); + bool Open(const wxString& filename, const wxString& mode = wxT("r")); // closes the opened file (this is a NOP if not opened) bool Close();