]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/ffile.h
Applied #9076 (scrolling bars grow box fix)
[wxWidgets.git] / include / wx / ffile.h
index fff114e2a40787863b6e85e54cef4c412aea98d0..861f49654746fdd6c6ac05702eafe41265bc6361 100644 (file)
@@ -37,13 +37,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();