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

David Bailes patch for bug 591

This commit is contained in:
v.audacity
2012-10-11 01:45:33 +00:00
parent a30cc8930e
commit 3cb679ccd8
4 changed files with 21 additions and 17 deletions

View File

@@ -30,12 +30,15 @@ END_EVENT_TABLE()
TimeDialog::TimeDialog(wxWindow *parent,
const wxString &title,
const wxString &format,
double rate,
double time,
const wxString &prompt)
: wxDialog(parent, wxID_ANY, title),
mFormat(format),
mRate(rate),
mTime(time),
mPrompt(prompt),
mFormat(wxT("seconds")),
mRate(44100),
mTime(0.0),
mTimeCtrl(NULL)
{
ShuttleGui S(this, eIsCreating);