1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 09:01:15 +02:00

Move AudacityApp::GenerateCrashReport to its own files

This commit is contained in:
Paul Licameli
2019-05-17 16:29:31 -04:00
parent 8da6529329
commit b04387a21d
11 changed files with 175 additions and 90 deletions

View File

@@ -4,9 +4,9 @@
#include <wx/textctrl.h>
#include "../AboutDialog.h"
#include "../AudacityApp.h"
#include "../AudacityLogger.h"
#include "../AudioIO.h"
#include "../CrashReport.h"
#include "../Dependencies.h"
#include "../FileNames.h"
#include "../Project.h"
@@ -141,7 +141,7 @@ void OnCrashReport(const CommandContext &WXUNUSED(context) )
char *p = 0;
*p = 1234;
#endif
wxGetApp().GenerateCrashReport(wxDebugReport::Context_Current);
CrashReport::Generate(wxDebugReport::Context_Current);
}
#endif