(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 5f11ca95a6
commit c1365b3cc1
26 changed files with 41 additions and 57 deletions

View File

@@ -279,7 +279,7 @@ public:
}
}
virtual void OnResize(Point delta)
virtual void OnResize()
{
this->vscroll.SetCapacity(this->GetWidget<NWidgetBase>(ANGRFW_GRF_LIST)->current_y / this->resize.step_height);
}
@@ -608,7 +608,7 @@ struct NewGRFWindow : public Window {
}
}
virtual void OnResize(Point delta)
virtual void OnResize()
{
this->vscroll.SetCapacity(this->GetWidget<NWidgetCore>(SNGRFS_FILE_LIST)->current_y / this->resize.step_height);
this->GetWidget<NWidgetCore>(SNGRFS_FILE_LIST)->widget_data = (this->vscroll.GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START);