From 2eef026fe35b9236606062f7d8a59d5661a5c748 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/newgrf_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/newgrf_gui.cpp') diff --git a/src/newgrf_gui.cpp b/src/newgrf_gui.cpp index 2d7926cbd..dca4db5f1 100644 --- a/src/newgrf_gui.cpp +++ b/src/newgrf_gui.cpp @@ -408,7 +408,7 @@ static void NewGRFWndProc(Window *w, WindowEvent *e) Window *w; DeleteWindowByClass(WC_SAVELOAD); - w = AllocateWindowDesc(&_newgrf_add_dlg_desc); + w = new Window(&_newgrf_add_dlg_desc); w->resize.step_height = 10; WP(w, newgrf_add_d).list = list; @@ -582,7 +582,7 @@ void ShowNewGRFSettings(bool editable, bool show_params, bool exec_changes, GRFC Window *w; DeleteWindowByClass(WC_GAME_OPTIONS); - w = AllocateWindowDesc(&_newgrf_desc); + w = new Window(&_newgrf_desc); if (w == NULL) return; w->resize.step_height = 14; -- cgit v1.2.3-70-g09d2