From: Vadim Zeitlin Date: Fri, 29 Jul 2005 12:48:06 +0000 (+0000) Subject: fixed id values to be more standard X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/247ec3f4ccb0697a6ce5728f2a68180b87ef0b91 fixed id values to be more standard git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34986 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/sound/sound.cpp b/samples/sound/sound.cpp index 54a6475b95..28c65be2f0 100644 --- a/samples/sound/sound.cpp +++ b/samples/sound/sound.cpp @@ -98,17 +98,17 @@ private: enum { // menu items - Sound_SelectFile, + Sound_SelectFile = wxID_HIGHEST + 1, #ifdef __WXMSW__ Sound_SelectResource, #endif // __WXMSW__ - Sound_Quit = wxID_EXIT, - Sound_PlaySync = wxID_HIGHEST + 1, + Sound_PlaySync, Sound_PlayAsync, Sound_PlayAsyncOnStack, Sound_PlayLoop, + Sound_Quit = wxID_EXIT, Sound_About = wxID_ABOUT };