(svn r13169) -Codechange: remove a (now) unneeded parameter of one of the Window constructors.

This commit is contained in:
rubidium
2008-05-18 20:40:30 +00:00
parent 23b9852480
commit a21d3fc63b
7 changed files with 10 additions and 13 deletions

View File

@@ -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)
{
}