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/statusbar_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/statusbar_gui.cpp') diff --git a/src/statusbar_gui.cpp b/src/statusbar_gui.cpp index 0b145c8a2..730114321 100644 --- a/src/statusbar_gui.cpp +++ b/src/statusbar_gui.cpp @@ -163,7 +163,7 @@ static WindowDesc _main_status_desc = { void ShowStatusBar() { _main_status_desc.top = _screen.height - 12; - Window *w = AllocateWindowDesc(&_main_status_desc); + Window *w = new Window(&_main_status_desc); if (w != NULL) { CLRBITS(w->flags4, WF_WHITE_BORDER_MASK); WP(w, def_d).data_1 = -1280; -- cgit v1.2.3-54-g00ecf