(svn r17525) -Cleanup: Remove SetWindowDirty(), it is completely covered by other functions already.

This commit is contained in:
frosch
2009-09-13 17:37:47 +00:00
parent 36739925a2
commit 263952f557
8 changed files with 9 additions and 21 deletions

View File

@@ -929,7 +929,7 @@ void CheckRedrawStationCoverage(const Window *w)
{
if (_thd.dirty & 1) {
_thd.dirty &= ~1;
SetWindowDirty(w);
w->SetDirty();
}
}
@@ -2079,7 +2079,7 @@ void ShowSaveLoadDialog(SaveLoadDialogMode mode)
void RedrawAutosave()
{
SetWindowDirty(FindWindowById(WC_STATUS_BAR, 0));
InvalidateWindow(WC_STATUS_BAR, 0);
}
void SetFiosType(const byte fiostype)