diff options
author | rubidium <rubidium@openttd.org> | 2007-12-16 10:54:08 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-12-16 10:54:08 +0000 |
commit | ec90ce7e98b29371b0fb139256065ac9991ca289 (patch) | |
tree | 267e33cbd909ce3837ebac7aca128ba8b4e40d0f /src/network | |
parent | acf6e08f7840c9b6b89bd6e758972bf2bea29c5f (diff) | |
download | openttd-ec90ce7e98b29371b0fb139256065ac9991ca289.tar.xz |
(svn r11643) -Codechange: conform with the coding style for the WP macro uses.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_gui.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/network/network_gui.cpp b/src/network/network_gui.cpp index 821114bbb..34b28ec9a 100644 --- a/src/network/network_gui.cpp +++ b/src/network/network_gui.cpp @@ -1403,10 +1403,10 @@ static Window *PopupClientList(Window *w, int client_no, int x, int y) w->widget[0].right = w->widget[0].left + 150; w->flags4 &= ~WF_WHITE_BORDER_MASK; - WP(w,menu_d).item_count = 0; + WP(w, menu_d).item_count = 0; // Save our client - WP(w,menu_d).main_button = client_no; - WP(w,menu_d).sel_index = 0; + WP(w, menu_d).main_button = client_no; + WP(w, menu_d).sel_index = 0; // We are a popup _popup_menu_active = true; @@ -1424,7 +1424,7 @@ static void ClientListPopupWndProc(Window *w, WindowEvent *e) DrawWindowWidgets(w); // Draw the actions - sel = WP(w,menu_d).sel_index; + sel = WP(w, menu_d).sel_index; y = 1; for (i = 0; i < MAX_CLIENTLIST_ACTION; i++, y += CLNWND_ROWSIZE) { if (_clientlist_action[i][0] == '\0') continue; @@ -1446,7 +1446,7 @@ static void ClientListPopupWndProc(Window *w, WindowEvent *e) int index = (e->we.popupmenu.pt.y - w->top) / CLNWND_ROWSIZE; if (index >= 0 && e->we.popupmenu.pt.y >= w->top) - HandleClientListPopupClick(index, WP(w,menu_d).main_button); + HandleClientListPopupClick(index, WP(w, menu_d).main_button); DeleteWindowById(WC_TOOLBAR_MENU, 0); } break; @@ -1455,9 +1455,9 @@ static void ClientListPopupWndProc(Window *w, WindowEvent *e) // Our mouse hoovers over an action? Select it! int index = (e->we.popupmenu.pt.y - w->top) / CLNWND_ROWSIZE; - if (index == -1 || index == WP(w,menu_d).sel_index) return; + if (index == -1 || index == WP(w, menu_d).sel_index) return; - WP(w,menu_d).sel_index = index; + WP(w, menu_d).sel_index = index; SetWindowDirty(w); } break; |