From 3d2d7af88f95c2eb4e349c537f74eaf02e8db7f0 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 15 Nov 2009 10:26:01 +0000 Subject: (svn r18086) -Codechange: remove 'widget' from WindowDesc --- src/window_gui.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/window_gui.h') diff --git a/src/window_gui.h b/src/window_gui.h index 0a529fffe..d31769b5f 100644 --- a/src/window_gui.h +++ b/src/window_gui.h @@ -127,7 +127,7 @@ extern Window *_focused_window; struct WindowDesc : ZeroedMemoryAllocator { WindowDesc(int16 left, int16 top, int16 min_width, int16 min_height, int16 def_width, int16 def_height, - WindowClass window_class, WindowClass parent_class, uint32 flags, const Widget *widgets, + WindowClass window_class, WindowClass parent_class, uint32 flags, const NWidgetPart *nwid_parts = NULL, int16 nwid_length = 0); ~WindowDesc(); @@ -141,7 +141,6 @@ struct WindowDesc : ZeroedMemoryAllocator { WindowClass cls; ///< Class of the window, @see WindowClass. WindowClass parent_cls; ///< Class of the parent window. @see WindowClass uint32 flags; ///< Flags. @see WindowDefaultFlags - const Widget *widgets; ///< List of widgets with their position and size for the window. const NWidgetPart *nwid_parts; ///< Nested widget parts describing the window. int16 nwid_length; ///< Length of the #nwid_parts array. mutable Widget *new_widgets; ///< Widgets generated from #nwid_parts. -- cgit v1.2.3-54-g00ecf