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/nullstream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nullstream.cpp') diff --git a/src/nullstream.cpp b/src/nullstream.cpp index 40c636c..6f792e3 100644 --- a/src/nullstream.cpp +++ b/src/nullstream.cpp @@ -22,10 +22,10 @@ size_t Bu::NullStream::read( void *pBuf, size_t nBytes ) return nBytes; } -Bu::FString Bu::NullStream::readLine() +Bu::String Bu::NullStream::readLine() { sRead++; - return Bu::FString("\0", 1 ); + return Bu::String("\0", 1 ); } size_t Bu::NullStream::write( const void *, size_t nBytes ) -- cgit v1.2.3