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/client.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/client.cpp') diff --git a/src/client.cpp b/src/client.cpp index b635c8b..c8d5dd4 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -109,12 +109,12 @@ void Bu::Client::clearProtocol() pProto = NULL; } /* -Bu::FString &Bu::Client::getInput() +Bu::String &Bu::Client::getInput() { return sReadBuf; } -Bu::FString &Bu::Client::getOutput() +Bu::String &Bu::Client::getOutput() { return sWriteBuf; } @@ -126,7 +126,7 @@ bool Bu::Client::isOpen() return pTopStream->isOpen(); } -size_t Bu::Client::write( const Bu::FString &sData ) +size_t Bu::Client::write( const Bu::String &sData ) { return qbWrite.write( sData.getStr(), sData.getSize() ); } @@ -221,7 +221,7 @@ Bu::ClientLink *Bu::Client::getLink() return pfLink->createLink( this ); } -void Bu::Client::onMessage( const Bu::FString &sMsg ) +void Bu::Client::onMessage( const Bu::String &sMsg ) { if( pProto ) pProto->onMessage( this, sMsg ); -- cgit v1.2.3