(svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor.

This commit is contained in:
rubidium
2008-05-08 11:31:41 +00:00
parent 5a7fcf9aa3
commit 51cda2252c
22 changed files with 121 additions and 141 deletions

View File

@@ -133,7 +133,7 @@ static const WindowDesc _select_game_desc = {
void ShowSelectGameWindow()
{
AllocateWindowDesc(&_select_game_desc);
new Window(&_select_game_desc);
}
static void AskExitGameCallback(Window *w, bool confirmed)