summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/town_gui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/town_gui.cpp b/src/town_gui.cpp
index 5e8030d7b..5192137ba 100644
--- a/src/town_gui.cpp
+++ b/src/town_gui.cpp
@@ -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;