]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/debugrpt.cpp
Add wxDir::GetNameWithSep() and use it to avoid consecutive slashes.
[wxWidgets.git] / src / common / debugrpt.cpp
index 88beafc6bbf9a3b0ca09354ecdd6b354cb5f3fce..a903051fcf1a4e4c6e5b463fe0f103010fe3a87d 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     2005-01-17
 // RCS-ID:      $Id$
 // Copyright:   (c) 2005 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
-// License:     wxWindows licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
@@ -268,8 +268,10 @@ wxDebugReport::AddFile(const wxString& filename, const wxString& description)
         // we need to copy the file to the debug report directory: give it the
         // same name there
         name = fn.GetFullName();
-        wxCopyFile(fn.GetFullPath(),
-                   wxFileName(GetDirectory(), name).GetFullPath());
+
+        if (!wxCopyFile(fn.GetFullPath(),
+                        wxFileName(GetDirectory(), name).GetFullPath()))
+           return;
     }
     else // file relative to the report directory
     {