1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 08:29:27 +02:00

Now that AudacityProject::OnShowLog does more than just wxGetApp().mLogger->Show(), use its processing rather than duplicate it in MultiDialog.

This commit is contained in:
v.audacity 2010-08-14 00:43:15 +00:00
parent e3f3b687c1
commit 5e38992c46

View File

@ -19,7 +19,7 @@ for each problem encountered, since there can be many orphans.
*//*******************************************************************/
#include "../Audacity.h"
#include "../AudacityApp.h"
#include "../Project.h"
#include "MultiDialog.h"
@ -126,7 +126,7 @@ void MultiDialog::OnOK(wxCommandEvent &event)
void MultiDialog::OnShowLog(wxCommandEvent &event)
{
wxGetApp().mLogger->Show();
GetActiveProject()->OnShowLog();
}