(svn r16036) -Codechange [FS#2825]: Renamed TVW_SHOWAUTORITY to TVW_SHOWAUTHORITY (bilbo)

This commit is contained in:
alberth 2009-04-12 06:01:24 +00:00
parent af37375e11
commit e85e8ca4db
1 changed files with 3 additions and 3 deletions

View File

@ -227,7 +227,7 @@ private:
TVW_VIEWPORTPANEL,
TVW_INFOPANEL = 5,
TVW_CENTERVIEW,
TVW_SHOWAUTORITY,
TVW_SHOWAUTHORITY,
TVW_CHANGENAME,
TVW_EXPAND,
TVW_DELETE,
@ -249,7 +249,7 @@ public:
if (this->town->larger_town) this->widget[TVW_CAPTION].data = STR_CITY;
this->SetWidgetHiddenState(TVW_DELETE, ingame); // hide delete button on game mode
this->SetWidgetHiddenState(TVW_EXPAND, ingame); // hide expand button on game mode
this->SetWidgetHiddenState(TVW_SHOWAUTORITY, !ingame); // hide autority button on editor mode
this->SetWidgetHiddenState(TVW_SHOWAUTHORITY, !ingame); // hide autority button on editor mode
if (ingame) {
/* resize caption bar */
@ -361,7 +361,7 @@ public:
}
break;
case TVW_SHOWAUTORITY: // town authority
case TVW_SHOWAUTHORITY: // town authority
ShowTownAuthorityWindow(this->window_number);
break;