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/file.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/file.cpp') diff --git a/src/file.cpp b/src/file.cpp index 008b88e..6634a62 100644 --- a/src/file.cpp +++ b/src/file.cpp @@ -17,7 +17,7 @@ namespace Bu { subExceptionDef( FileException ) } -Bu::File::File( const Bu::FString &sName, int iFlags ) : +Bu::File::File( const Bu::String &sName, int iFlags ) : fd( -1 ), bEos( true ) { @@ -187,7 +187,7 @@ void Bu::File::setBlocking( bool bBlocking ) #endif } -Bu::File Bu::File::tempFile( Bu::FString &sName ) +Bu::File Bu::File::tempFile( Bu::String &sName ) { uint32_t iX; iX = time( NULL ) + getpid(); -- cgit v1.2.3