From 51cda2252ceb088d75f25074f1e83e8eec5f18b6 Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 8 May 2008 11:31:41 +0000 Subject: (svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor. --- src/player_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/player_gui.cpp') diff --git a/src/player_gui.cpp b/src/player_gui.cpp index a8f05d593..fb8a8b11d 100644 --- a/src/player_gui.cpp +++ b/src/player_gui.cpp @@ -1552,7 +1552,7 @@ void ShowHighscoreTable(int difficulty, int8 ranking) if (_game_mode != GM_MENU) HideVitalWindows(); DeleteWindowByClass(WC_HIGHSCORE); - w = AllocateWindowDesc(&_highscore_desc); + w = new Window(&_highscore_desc); if (w != NULL) { MarkWholeScreenDirty(); @@ -1575,7 +1575,7 @@ void ShowEndGameChart() HideVitalWindows(); DeleteWindowByClass(WC_ENDSCREEN); - w = AllocateWindowDesc(&_endgame_desc); + w = new Window(&_endgame_desc); if (w != NULL) { MarkWholeScreenDirty(); -- cgit v1.2.3-54-g00ecf