diff options
author | rubidium <rubidium@openttd.org> | 2008-05-18 20:40:30 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-18 20:40:30 +0000 |
commit | 6da56ee87ed7131b0c8e47d8924e5305ea8c0dd2 (patch) | |
tree | 41abfe9b87f469f713f101ff0e28d4bcf1c50545 /src/widgets | |
parent | 9aa69db2e6352bf81df189c70ba2719bbdc38c31 (diff) | |
download | openttd-6da56ee87ed7131b0c8e47d8924e5305ea8c0dd2.tar.xz |
(svn r13169) -Codechange: remove a (now) unneeded parameter of one of the Window constructors.
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/dropdown.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) { } |