(svn r17532) -Codechange: Rename several Invalidate functions to SetDirty for more consistency and distinguishability.

This commit is contained in:
frosch
2009-09-13 19:15:59 +00:00
parent 5de9cc46b5
commit ebd916be3d
61 changed files with 323 additions and 323 deletions

View File

@@ -254,7 +254,7 @@ protected:
this->last_station = NULL;
/* Set the modified widget dirty */
this->InvalidateWidget(SLW_LIST);
this->SetWidgetDirty(SLW_LIST);
}
public:
@@ -969,7 +969,7 @@ struct StationViewWindow : public Window {
for (CargoID c = 0; c < NUM_CARGO; c++) {
if (this->cargo_rows[c] == row) {
ToggleBit(this->cargo, c);
this->InvalidateWidget(SVW_WAITING);
this->SetWidgetDirty(SVW_WAITING);
break;
}
}