From f5aca1a1b402bd7ebc944dc6e6fe65828d863365 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 02:14:08 +0000 Subject: Bu::FString is now String, and there's a shell script to fix any other programs that were using fstring, I hope. --- src/server.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server.cpp') diff --git a/src/server.cpp b/src/server.cpp index e701a69..3348d3c 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -34,7 +34,7 @@ void Bu::Server::addPort( int nPort, int nPoolSize ) hServers.insert( nSocket, s ); } -void Bu::Server::addPort( const FString &sAddr, int nPort, int nPoolSize ) +void Bu::Server::addPort( const String &sAddr, int nPort, int nPoolSize ) { TcpServerSocket *s = new TcpServerSocket( sAddr, nPort, nPoolSize ); int nSocket = s->getSocket(); @@ -153,7 +153,7 @@ Bu::Server::SrvClientLink::~SrvClientLink() { } -void Bu::Server::SrvClientLink::sendMessage( const Bu::FString &sMsg ) +void Bu::Server::SrvClientLink::sendMessage( const Bu::String &sMsg ) { pClient->onMessage( sMsg ); } -- cgit v1.2.3