From cf52b683c0a478b113bd25893f49554906edb32f Mon Sep 17 00:00:00 2001 From: peter1138 Date: Mon, 25 Aug 2008 16:07:10 +0000 Subject: (svn r14168) -Codechange: Make dropdown 'auto_width' a separate parameter, so that a minimum width can be specified. --- src/widgets/dropdown_type.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/widgets/dropdown_type.h') diff --git a/src/widgets/dropdown_type.h b/src/widgets/dropdown_type.h index f3a5f7976..086e5717d 100644 --- a/src/widgets/dropdown_type.h +++ b/src/widgets/dropdown_type.h @@ -70,11 +70,10 @@ typedef std::list DropDownList; * @param button The widget within the parent window that is used to determine * the list's location. * @param width Override the width determined by the selected widget. - * If UINT_MAX then the width is determined by the widest item - * in the list. + * @param auto_width Maximum width is determined by the widest item in the list. * @param instant_close Set to true if releasing mouse button should close the * list regardless of where the cursor is. */ -void ShowDropDownList(Window *w, DropDownList *list, int selected, int button, uint width = 0, bool instant_close = false); +void ShowDropDownList(Window *w, DropDownList *list, int selected, int button, uint width = 0, bool auto_width = false, bool instant_close = false); #endif /* WIDGETS_DROPDOWN_TYPE_H */ -- cgit v1.2.3-54-g00ecf