]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/file.h
provide both const char* and const wchar_t* implicit conversion of wxCStrData regardl...
[wxWidgets.git] / include / wx / file.h
index 7712d65f2cf9b0ed02584f2b716d794046f3a7f9..d3dd07ea3a5af02f2374d3cf8b2ebefc5ef675e9 100644 (file)
@@ -73,7 +73,7 @@ public:
     // def ctor
   wxFile() { m_fd = fd_invalid; m_error = false; }
     // open specified file (may fail, use IsOpened())
-  wxFile(const wxChar *szFileName, OpenMode mode = read);
+  wxFile(const wxString& fileName, OpenMode mode = read);
     // attach to (already opened) file
   wxFile(int lfd) { m_fd = lfd; m_error = false; }