From 8ce9c5f29b52cc9625bdda47594b4fad9e3dd242 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 16 Dec 2007 10:54:08 +0000 Subject: (svn r11643) -Codechange: conform with the coding style for the WP macro uses. --- src/town_gui.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/town_gui.cpp') diff --git a/src/town_gui.cpp b/src/town_gui.cpp index a9bae18a4..ebfd06278 100644 --- a/src/town_gui.cpp +++ b/src/town_gui.cpp @@ -140,8 +140,8 @@ static void TownAuthorityWndProc(Window *w, WindowEvent *e) SetVScrollCount(w, numact + 1); - if (WP(w,def_d).data_1 != -1 && !HasBit(buttons, WP(w,def_d).data_1)) - WP(w,def_d).data_1 = -1; + if (WP(w, def_d).data_1 != -1 && !HasBit(buttons, WP(w,def_d).data_1)) + WP(w, def_d).data_1 = -1; w->SetWidgetDisabledState(6, WP(w, def_d).data_1 == -1); @@ -206,7 +206,7 @@ static void TownAuthorityWndProc(Window *w, WindowEvent *e) } { - int i = WP(w,def_d).data_1; + int i = WP(w, def_d).data_1; if (i != -1) { SetDParam(1, (_price.build_industry >> 8) * _town_action_costs[i]); @@ -228,7 +228,7 @@ static void TownAuthorityWndProc(Window *w, WindowEvent *e) y = GetNthSetBit(GetMaskOfTownActions(NULL, _local_player, t), y + w->vscroll.pos - 1); if (y >= 0) { - WP(w,def_d).data_1 = y; + WP(w, def_d).data_1 = y; SetWindowDirty(w); } /* Fall through to clicking in case we are double-clicked */ @@ -236,7 +236,7 @@ static void TownAuthorityWndProc(Window *w, WindowEvent *e) } case TWA_EXECUTE: { - DoCommandP(GetTown(w->window_number)->xy, w->window_number, WP(w,def_d).data_1, NULL, CMD_DO_TOWN_ACTION | CMD_MSG(STR_00B4_CAN_T_DO_THIS)); + DoCommandP(GetTown(w->window_number)->xy, w->window_number, WP(w, def_d).data_1, NULL, CMD_DO_TOWN_ACTION | CMD_MSG(STR_00B4_CAN_T_DO_THIS)); break; } } @@ -262,7 +262,7 @@ static void ShowTownAuthorityWindow(uint town) if (w != NULL) { w->vscroll.cap = 5; - WP(w,def_d).data_1 = -1; + WP(w, def_d).data_1 = -1; } } -- cgit v1.2.3-54-g00ecf