(svn r17853) -Codechange: remove the 'delta' parameter from OnResize; it was used in ways that aren't always wanted, causing bugs and the like. Also with nested widgets most reasons for handling OnResize have gone.

This commit is contained in:
rubidium
2009-10-24 14:53:55 +00:00
parent c3992ab7b6
commit ca0521f89f
26 changed files with 41 additions and 57 deletions

View File

@@ -991,7 +991,7 @@ struct MessageHistoryWindow : Window {
}
}
virtual void OnResize(Point delta)
virtual void OnResize()
{
this->vscroll.SetCapacity(this->GetWidget<NWidgetBase>(MHW_BACKGROUND)->current_y / this->line_height);
}