(svn r16160) -Codechange: remove the need for explicit TC_FROMSTRING for DrawString.

This commit is contained in:
rubidium
2009-04-26 14:52:56 +00:00
parent e83ef9b4c7
commit 650cb3694e
24 changed files with 130 additions and 130 deletions

View File

@@ -106,7 +106,7 @@ struct SignListWindow : Window, SignList {
/* No signs? */
int y = this->widget[SLW_LIST].top + 2; // offset from top of widget
if (this->vscroll.count == 0) {
DrawString(this->widget[SLW_LIST].left + 2, this->widget[SLW_LIST].right, y, STR_STATION_LIST_NONE, TC_FROMSTRING);
DrawString(this->widget[SLW_LIST].left + 2, this->widget[SLW_LIST].right, y, STR_STATION_LIST_NONE);
return;
}