From a21d3fc63b0b5b936f5d59d9abcd3c1d03ed5bb5 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 18 May 2008 20:40:30 +0000 Subject: (svn r13169) -Codechange: remove a (now) unneeded parameter of one of the Window constructors. --- src/widgets/dropdown.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/widgets') diff --git a/src/widgets/dropdown.cpp b/src/widgets/dropdown.cpp index 67cb77b89..b9857ddaf 100644 --- a/src/widgets/dropdown.cpp +++ b/src/widgets/dropdown.cpp @@ -72,7 +72,7 @@ struct DropdownWindow : Window { bool drag_mode; int scrolling; - DropdownWindow(int x, int y, int width, int height, const Widget *widget) : Window(x, y, width, height, NULL, WC_DROPDOWN_MENU, widget) + DropdownWindow(int x, int y, int width, int height, const Widget *widget) : Window(x, y, width, height, WC_DROPDOWN_MENU, widget) { } -- cgit v1.2.3-54-g00ecf