From 8b5421290027ab67cba25225111e3561ddd7af07 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 17 May 2008 12:48:06 +0000 Subject: (svn r13139) -Codechange: move DrawWindowWidgets and DrawWindowViewport to the Window class and remove Window from their naming. --- src/music_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/music_gui.cpp') diff --git a/src/music_gui.cpp b/src/music_gui.cpp index 589dbeca9..3b032c5a0 100644 --- a/src/music_gui.cpp +++ b/src/music_gui.cpp @@ -204,7 +204,7 @@ static void MusicTrackSelectionWndProc(Window *w, WindowEvent *e) w->SetWidgetDisabledState(11, msf.playlist <= 3); w->LowerWidget(3); w->LowerWidget(4); - DrawWindowWidgets(w); + w->DrawWidgets(); GfxFillRect(3, 23, 3 + 177, 23 + 191, 0); GfxFillRect(251, 23, 251 + 177, 23 + 191, 0); @@ -346,7 +346,7 @@ static void MusicWindowWndProc(Window *w, WindowEvent *e) w->RaiseWidget(7); w->RaiseWidget(9); - DrawWindowWidgets(w); + w->DrawWidgets(); GfxFillRect(187, 16, 200, 33, 0); -- cgit v1.2.3-54-g00ecf