applied patch 410892 (wxCopyFile uses ::CopyFile under Win32, has overwrite parameter)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9685 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-04-09 00:10:21 +00:00
parent d8c72298ec
commit 4658c44ec2
3 changed files with 21 additions and 8 deletions

View File

@@ -213,9 +213,12 @@ TRUE if successful.
\membersection{::wxCopyFile}
\func{bool}{wxCopyFile}{\param{const wxString\& }{file1}, \param{const wxString\& }{file2}}
\func{bool}{wxCopyFile}{\param{const wxString\& }{file1}, \param{const wxString\& }{file2}, \param{bool }{overwrite = TRUE}}
Copies {\it file1} to {\it file2}, returning TRUE if successful.
Copies {\it file1} to {\it file2}, returning TRUE if successful. If
{\it overwrite} parameter is TRUE (default), the destination file is overwritten
if it exists, but if {\it overwrite} is FALSE, the functions failes in this
case.
\membersection{::wxGetCwd}\label{wxgetcwd}