From 3ae50673a3e1e64a6038c53570c5ee168073e038 Mon Sep 17 00:00:00 2001 From: skidd13 Date: Tue, 20 Nov 2007 13:35:54 +0000 Subject: (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style --- src/network/network_gui.cpp | 2 +- src/network/network_udp.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/network') diff --git a/src/network/network_gui.cpp b/src/network/network_gui.cpp index 09f904ebd..5b76331c5 100644 --- a/src/network/network_gui.cpp +++ b/src/network/network_gui.cpp @@ -1686,7 +1686,7 @@ static void ChatWindowWndProc(Window *w, WindowEvent *e) switch (e->event) { case WE_CREATE: SendWindowMessage(WC_NEWS_WINDOW, 0, WE_CREATE, w->height, 0); - SETBIT(_no_scroll, SCROLL_CHAT); // do not scroll the game with the arrow-keys + SetBit(_no_scroll, SCROLL_CHAT); // do not scroll the game with the arrow-keys break; case WE_PAINT: { diff --git a/src/network/network_udp.cpp b/src/network/network_udp.cpp index 5a1980a9d..c12ac21c6 100644 --- a/src/network/network_udp.cpp +++ b/src/network/network_udp.cpp @@ -398,7 +398,7 @@ void ClientNetworkUDPSocketHandler::HandleIncomingNetworkGameInfoGRFConfig(GRFCo config->name = f->name; config->info = f->info; } - SETBIT(config->flags, GCF_COPY); + SetBit(config->flags, GCF_COPY); } // Close UDP connection -- cgit v1.2.3-54-g00ecf