// ... and attach this menu bar to the frame
SetMenuBar(menuBar);
- m_tc = new wxTextCtrl(this, -1, wxEmptyString,
+ m_tc = new wxTextCtrl(this, wxID_ANY, wxEmptyString,
wxDefaultPosition, wxDefaultSize,
wxTE_MULTILINE|wxTE_READONLY);
NotifyUsingFile(m_soundFile);
if (!m_sound)
m_sound = new wxSound(m_soundFile);
if (m_sound->IsOk())
- m_sound->Play(wxSOUND_SYNC);
+ m_sound->Play((unsigned)wxSOUND_SYNC);
}
void MyFrame::OnPlayAsync(wxCommandEvent& WXUNUSED(event))
if (!m_sound)
m_sound = new wxSound(m_soundFile);
if (m_sound->IsOk())
- m_sound->Play(wxSOUND_ASYNC);
+ m_sound->Play((unsigned)wxSOUND_ASYNC);
}
void MyFrame::OnPlayAsyncOnStack(wxCommandEvent& WXUNUSED(event))
wxBusyCursor busy;
wxSound snd(m_soundFile);
if (snd.IsOk())
- snd.Play(wxSOUND_ASYNC);
+ snd.Play((unsigned)wxSOUND_ASYNC);
}
void MyFrame::OnPlayLoop(wxCommandEvent& WXUNUSED(event))
if (!m_sound)
m_sound = new wxSound(m_soundFile);
if (m_sound->IsOk())
- m_sound->Play(wxSOUND_ASYNC | wxSOUND_LOOP);
+ m_sound->Play((unsigned)(wxSOUND_ASYNC | wxSOUND_LOOP));
}
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))