X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/27c2041ff6d4f8db45f3903038d3d92aff4b6328..2cef71bc23a9cd0ec543e451848fb9e88ace36e9:/samples/sound/sound.cpp diff --git a/samples/sound/sound.cpp b/samples/sound/sound.cpp index b54f01f994..7ddb31f564 100644 --- a/samples/sound/sound.cpp +++ b/samples/sound/sound.cpp @@ -164,12 +164,12 @@ MyFrame::MyFrame(const wxString& title) wxMenu *helpMenu = new wxMenu; wxMenu *playMenu = new wxMenu; helpMenu->Append(Sound_About, _T("&About...\tF1"), _T("Show about dialog")); - menuFile->Append(Sound_SelectFile, _T("&Select WAV file"), _T("Select a new wav file to play")); + menuFile->Append(Sound_SelectFile, _T("&Select WAV file\tCtrl+O"), _T("Select a new wav file to play")); menuFile->Append(Sound_Quit, _T("E&xit\tAlt-X"), _T("Quit this program")); - playMenu->Append(Sound_PlaySync, _T("Play sound &synchronously")); - playMenu->Append(Sound_PlayAsync, _T("Play sound &asynchronously")); - playMenu->Append(Sound_PlayAsyncOnStack, _T("Play sound asynchronously (&object on stack)")); - playMenu->Append(Sound_PlayLoop, _T("&Loop sound")); + playMenu->Append(Sound_PlaySync, _T("Play sound &synchronously\tCtrl+S")); + playMenu->Append(Sound_PlayAsync, _T("Play sound &asynchronously\tCtrl+A")); + playMenu->Append(Sound_PlayAsyncOnStack, _T("Play sound asynchronously (&object on stack)\tCtrl+T")); + playMenu->Append(Sound_PlayLoop, _T("&Loop sound\tCtrl+L")); // now append the freshly created menu to the menu bar... wxMenuBar *menuBar = new wxMenuBar();