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.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/file.h') diff --git a/src/file.h b/src/file.h index b2cd2a4..81c1592 100644 --- a/src/file.h +++ b/src/file.h @@ -12,7 +12,7 @@ #include #include "bu/stream.h" -#include "bu/fstring.h" +#include "bu/string.h" #include "bu/exceptionbase.h" namespace Bu @@ -26,7 +26,7 @@ namespace Bu class File : public Bu::Stream { public: - File( const Bu::FString &sName, int iFlags ); + File( const Bu::String &sName, int iFlags ); File( int fd ); virtual ~File(); @@ -75,12 +75,12 @@ namespace Bu /** * Create a temp file and return its handle. The file is opened * Read/Write. - *@param sName (Bu::FString) Give in the form: "/tmp/tmpfileXXXXXXXX" + *@param sName (Bu::String) Give in the form: "/tmp/tmpfileXXXXXXXX" * It will alter your (sName) setting the 'X's to random * characters. *@returns (Bu::File) A file object representing your temp file. */ - static Bu::File tempFile( Bu::FString &sName ); + static Bu::File tempFile( Bu::String &sName ); #ifndef WIN32 /** -- cgit v1.2.3