]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/debugrpt.cpp
Change the name of the smart pointer so that wxZipOutputStreamPtr is free
[wxWidgets.git] / src / common / debugrpt.cpp
index 2f2c707b9b5bfe74238cfc65068872731bf08fd9..eaa1ea0d04a8a78f507e290c7f4eb86e637438e0 100644 (file)
@@ -549,7 +549,8 @@ bool wxDebugReport::DoProcess()
 
 #if wxUSE_ZIPSTREAM
 
-wxDEFINE_SCOPED_PTR_TYPE(wxZipOutputStream)
+wxDECLARE_SCOPED_PTR(wxZipOutputStream, wxDbgZipOutputStreamPtr)
+wxDEFINE_SCOPED_PTR(wxZipOutputStream, wxDbgZipOutputStreamPtr)
 
 // ----------------------------------------------------------------------------
 // wxDebugReportCompress
@@ -564,7 +565,7 @@ bool wxDebugReportCompress::DoProcess()
     // create the streams
     wxFileName fn(GetDirectory(), GetReportName(), _T("zip"));
     wxFFileOutputStream os(fn.GetFullPath(), _T("wb"));
-    wxZipOutputStreamPtr zos(new wxZipOutputStream(os, 9));
+    wxDbgZipOutputStreamPtr zos(new wxZipOutputStream(os, 9));
 
     // add all files to the ZIP one
     wxString name, desc;