diff options
author | rubidium <rubidium@openttd.org> | 2009-01-10 16:26:17 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-01-10 16:26:17 +0000 |
commit | a54e9574162540234b362565bd6c7d3ed19660d2 (patch) | |
tree | 76c2a4a60a51b4ff9753d40fb2ac216ad9c6509a /src/settings_gui.cpp | |
parent | 88e3815176d956d17d52de03c205207dc570938e (diff) | |
download | openttd-a54e9574162540234b362565bd6c7d3ed19660d2.tar.xz |
(svn r14960) -Codechange: add some this where appropriate (Alberth)
Diffstat (limited to 'src/settings_gui.cpp')
-rw-r--r-- | src/settings_gui.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/settings_gui.cpp b/src/settings_gui.cpp index 9064d0bdb..662831b6c 100644 --- a/src/settings_gui.cpp +++ b/src/settings_gui.cpp @@ -801,14 +801,14 @@ struct PatchesSelectionWindow : Window { this->page = 0; this->vscroll.pos = 0; this->vscroll.cap = (this->widget[PATCHSEL_OPTIONSPANEL].bottom - this->widget[PATCHSEL_OPTIONSPANEL].top - 8) / SETTING_HEIGHT; - SetVScrollCount(this, _patches_page[page].num); + SetVScrollCount(this, _patches_page[this->page].num); this->resize.step_height = SETTING_HEIGHT; this->resize.height = this->height; this->resize.step_width = 1; this->resize.width = this->width; - this->LowerWidget(page + PATCHSEL_INTERFACE); // Depress button of currently selected page + this->LowerWidget(this->page + PATCHSEL_INTERFACE); // Depress button of currently selected page this->FindWindowPlacementAndResize(desc); } @@ -822,7 +822,7 @@ struct PatchesSelectionWindow : Window { int x = SETTINGTREE_LEFT_OFFSET; int y = SETTINGTREE_TOP_OFFSET; - for (uint i = vscroll.pos; i != page->num && vscroll.pos + vscroll.cap - i > 0; i++) { + for (uint i = this->vscroll.pos; i != page->num && this->vscroll.pos + this->vscroll.cap - i > 0; i++) { const SettingDesc *sd = page->entries[i].setting; DrawPatch(patches_ptr, sd, x, y, this->click - (i * 2)); y += SETTING_HEIGHT; @@ -964,7 +964,7 @@ struct PatchesSelectionWindow : Window { this->RaiseWidget(this->page + PATCHSEL_INTERFACE); this->page = widget - PATCHSEL_INTERFACE; this->LowerWidget(this->page + PATCHSEL_INTERFACE); - SetVScrollCount(this, _patches_page[page].num); + SetVScrollCount(this, _patches_page[this->page].num); DeleteWindowById(WC_QUERY_STRING, 0); this->SetDirty(); break; @@ -995,7 +995,7 @@ struct PatchesSelectionWindow : Window { virtual void OnResize(Point new_size, Point delta) { this->vscroll.cap += delta.y / SETTING_HEIGHT; - SetVScrollCount(this, _patches_page[page].num); + SetVScrollCount(this, _patches_page[this->page].num); } }; |