From b6c2216749765e4d29fc3fa05dc1023c2c643cce Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 30 Nov 2010 13:38:46 +0000 Subject: (svn r21358) -Codechange: make some network function names conform to coding style --- src/network/core/core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/network/core/core.cpp') diff --git a/src/network/core/core.cpp b/src/network/core/core.cpp index 4c724e47e..fc1bbf954 100644 --- a/src/network/core/core.cpp +++ b/src/network/core/core.cpp @@ -103,7 +103,7 @@ void NetworkCoreShutdown() * @param p the packet to write the data to * @param grf the GRFIdentifier to serialize */ -void NetworkSocketHandler::Send_GRFIdentifier(Packet *p, const GRFIdentifier *grf) +void NetworkSocketHandler::SendGRFIdentifier(Packet *p, const GRFIdentifier *grf) { uint j; p->Send_uint32(grf->grfid); @@ -117,7 +117,7 @@ void NetworkSocketHandler::Send_GRFIdentifier(Packet *p, const GRFIdentifier *gr * @param p the packet to read the data from * @param grf the GRFIdentifier to deserialize */ -void NetworkSocketHandler::Recv_GRFIdentifier(Packet *p, GRFIdentifier *grf) +void NetworkSocketHandler::ReceiveGRFIdentifier(Packet *p, GRFIdentifier *grf) { uint j; grf->grfid = p->Recv_uint32(); -- cgit v1.2.3-54-g00ecf