(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 9aa69db2e6
commit 6da56ee87e
7 changed files with 10 additions and 13 deletions

View File

@@ -282,7 +282,7 @@ protected:
void FindWindowPlacementAndResize(const WindowDesc *desc);
public:
Window(int x, int y, int width, int height, WindowProc *proc, WindowClass cls, const Widget *widget);
Window(int x, int y, int width, int height, WindowClass cls, const Widget *widget);
Window(const WindowDesc *desc, WindowNumber number = 0);
virtual ~Window();