1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-19 07:01:25 +01:00

Fix commit r12317 to build on Linux. Apply WXUNUSED a couple of places.

This commit is contained in:
v.audacity
2013-05-11 21:22:55 +00:00
parent 483d723a5d
commit 711a955ed6

View File

@@ -45,6 +45,7 @@ and ImportLOF.cpp.
#include <wx/listimpl.cpp>
#include "../ShuttleGui.h"
#include "../Audacity.h"
#include "../Project.h"
#include "Import.h"
#include "ImportPlugin.h"
@@ -718,7 +719,7 @@ ImportStreamDialog::~ImportStreamDialog()
}
void ImportStreamDialog::OnOk(wxCommandEvent &event)
void ImportStreamDialog::OnOk(wxCommandEvent & WXUNUSED(event))
{
wxArrayInt selitems;
int sels = StreamList->GetSelections(selitems);
@@ -727,19 +728,8 @@ void ImportStreamDialog::OnOk(wxCommandEvent &event)
EndModal( wxID_OK );
}
void ImportStreamDialog::OnCancel(wxCommandEvent &event)
void ImportStreamDialog::OnCancel(wxCommandEvent & WXUNUSED(event))
{
EndModal( wxID_CANCEL );
}
// Indentation settings for Vim and Emacs and unique identifier for Arch, a
// version control system. Please do not modify past this point.
//
// Local Variables:
// c-basic-offset: 3
// indent-tabs-mode: nil
// End:
//
// vim: et sts=3 sw=3
// arch-tag: 702e6bd3-b26c-424f-9d6a-c88b565ea143