mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-22 15:20:15 +02:00
one more wx 31 change
This commit is contained in:
parent
4e14f42847
commit
c112d47147
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
*//*******************************************************************/
|
*//*******************************************************************/
|
||||||
|
|
||||||
#include "../Audacity.h"
|
#include "../Audacity.h"
|
||||||
#include "Reverb.h"
|
#include "Reverb.h"
|
||||||
#include "Reverb_libSoX.h"
|
#include "Reverb_libSoX.h"
|
||||||
#include "../Prefs.h"
|
#include "../Prefs.h"
|
||||||
@ -477,7 +477,12 @@ void ReverbDialogue::OnStereoWidthWidget(wxCommandEvent & WXUNUSED(event))
|
|||||||
|
|
||||||
static int wxGetChoiceFromUser(wxWindow * parent, wxString const & message,
|
static int wxGetChoiceFromUser(wxWindow * parent, wxString const & message,
|
||||||
wxString const & caption, wxArrayString const & choices,
|
wxString const & caption, wxArrayString const & choices,
|
||||||
char * * clientData = 0, long style = wxCHOICEDLG_STYLE,
|
#if wxCHECK_VERSION(3,0,0)
|
||||||
|
void * * clientData = 0,
|
||||||
|
#else
|
||||||
|
char * * clientData = 0,
|
||||||
|
#endif
|
||||||
|
long style = wxCHOICEDLG_STYLE,
|
||||||
wxPoint const & pos = wxDefaultPosition) // Home-grown function
|
wxPoint const & pos = wxDefaultPosition) // Home-grown function
|
||||||
{
|
{
|
||||||
wxSingleChoiceDialog d(parent, message, caption, choices, clientData, style, pos);
|
wxSingleChoiceDialog d(parent, message, caption, choices, clientData, style, pos);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user