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/stream.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/stream.cpp') diff --git a/src/stream.cpp b/src/stream.cpp index f13d33a..33817de 100644 --- a/src/stream.cpp +++ b/src/stream.cpp @@ -15,9 +15,9 @@ Bu::Stream::~Stream() { } -Bu::FString Bu::Stream::readLine() +Bu::String Bu::Stream::readLine() { - Bu::FString sRet; + Bu::String sRet; for(;;) { @@ -30,7 +30,7 @@ Bu::FString Bu::Stream::readLine() } } -Bu::size Bu::Stream::write( const Bu::FString &sBuf ) +Bu::size Bu::Stream::write( const Bu::String &sBuf ) { return write( sBuf.getStr(), sBuf.getSize() ); } -- cgit v1.2.3