summaryrefslogtreecommitdiff
path: root/src/music_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-08 11:50:34 +0000
committerrubidium <rubidium@openttd.org>2008-05-08 11:50:34 +0000
commit23fc96c3e8c252edbf2e7c22cefab633a0474410 (patch)
tree23ad171b2093a5c5980b9d912bf60056102af9fa /src/music_gui.cpp
parent2eef026fe35b9236606062f7d8a59d5661a5c748 (diff)
downloadopenttd-23fc96c3e8c252edbf2e7c22cefab633a0474410.tar.xz
(svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window.
Diffstat (limited to 'src/music_gui.cpp')
-rw-r--r--src/music_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/music_gui.cpp b/src/music_gui.cpp
index 59234dc79..7508ea9d2 100644
--- a/src/music_gui.cpp
+++ b/src/music_gui.cpp
@@ -334,7 +334,7 @@ static const WindowDesc _music_track_selection_desc = {
static void ShowMusicTrackSelection()
{
- AllocateWindowDescFront(&_music_track_selection_desc, 0);
+ AllocateWindowDescFront<Window>(&_music_track_selection_desc, 0);
}
static void MusicWindowWndProc(Window *w, WindowEvent *e)
@@ -502,5 +502,5 @@ static const WindowDesc _music_window_desc = {
void ShowMusicWindow()
{
- AllocateWindowDescFront(&_music_window_desc, 0);
+ AllocateWindowDescFront<Window>(&_music_window_desc, 0);
}