diff options
author | rubidium <rubidium@openttd.org> | 2009-10-24 14:53:55 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-10-24 14:53:55 +0000 |
commit | ca0521f89fc53be22e18cb56f6d9c358555246af (patch) | |
tree | 709e00edcb606c69ea67ffbf1ba2a115c0bedb70 /src/network | |
parent | c3992ab7b69461189f217be73136997cd097ee62 (diff) | |
download | openttd-ca0521f89fc53be22e18cb56f6d9c358555246af.tar.xz |
(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.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_content_gui.cpp | 2 | ||||
-rw-r--r-- | src/network/network_gui.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/network/network_content_gui.cpp b/src/network/network_content_gui.cpp index 43858d349..80631f17f 100644 --- a/src/network/network_content_gui.cpp +++ b/src/network/network_content_gui.cpp @@ -734,7 +734,7 @@ public: this->InvalidateData(); } - virtual void OnResize(Point delta) + virtual void OnResize() { this->vscroll.SetCapacity(this->GetWidget<NWidgetBase>(NCLWW_MATRIX)->current_y / this->resize.step_height); this->GetWidget<NWidgetCore>(NCLWW_MATRIX)->widget_data = (this->vscroll.GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START); diff --git a/src/network/network_gui.cpp b/src/network/network_gui.cpp index 85ee499b8..dc3fcef72 100644 --- a/src/network/network_gui.cpp +++ b/src/network/network_gui.cpp @@ -712,7 +712,7 @@ public: if (!StrEmpty(str)) NetworkAddServer(str); } - virtual void OnResize(Point delta) + virtual void OnResize() { this->vscroll.SetCapacity((this->widget[NGWW_MATRIX].bottom - this->widget[NGWW_MATRIX].top + 1) / this->resize.step_height); this->widget[NGWW_MATRIX].data = (this->vscroll.GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START); |