src/music_gui.cpp
changeset 9143 029e126e3439
parent 9116 f2491d3c321b
child 9161 fda175383e87
equal deleted inserted replaced
9142:858a058aa730 9143:029e126e3439
   332 	MusicTrackSelectionWndProc
   332 	MusicTrackSelectionWndProc
   333 };
   333 };
   334 
   334 
   335 static void ShowMusicTrackSelection()
   335 static void ShowMusicTrackSelection()
   336 {
   336 {
   337 	AllocateWindowDescFront(&_music_track_selection_desc, 0);
   337 	AllocateWindowDescFront<Window>(&_music_track_selection_desc, 0);
   338 }
   338 }
   339 
   339 
   340 static void MusicWindowWndProc(Window *w, WindowEvent *e)
   340 static void MusicWindowWndProc(Window *w, WindowEvent *e)
   341 {
   341 {
   342 	switch (e->event) {
   342 	switch (e->event) {
   500 	MusicWindowWndProc
   500 	MusicWindowWndProc
   501 };
   501 };
   502 
   502 
   503 void ShowMusicWindow()
   503 void ShowMusicWindow()
   504 {
   504 {
   505 	AllocateWindowDescFront(&_music_window_desc, 0);
   505 	AllocateWindowDescFront<Window>(&_music_window_desc, 0);
   506 }
   506 }