]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filefn.cpp
fixing focus, fixes #11911
[wxWidgets.git] / src / common / filefn.cpp
index eb7c74a9687f97b234b1c4f710ceb3606e994ecf..2b3314abcea996f2f9960d5083f416a2cc14a49e 100644 (file)
@@ -1079,7 +1079,7 @@ wxCopyFile (const wxString& file1, const wxString& file2, bool overwrite)
 
     wxStructStat fbuf;
     // get permissions of file1
-    if ( wxStat( file1.c_str(), &fbuf) != 0 )
+    if ( wxStat( file1, &fbuf) != 0 )
     {
         // the file probably doesn't exist or we haven't the rights to read
         // from it anyhow