From 247ec3f4ccb0697a6ce5728f2a68180b87ef0b91 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 29 Jul 2005 12:48:06 +0000 Subject: [PATCH] fixed id values to be more standard git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34986 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/sound/sound.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 };