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/unit/taf.unit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/unit/taf.unit') diff --git a/src/unit/taf.unit b/src/unit/taf.unit index cab04d2..908e591 100644 --- a/src/unit/taf.unit +++ b/src/unit/taf.unit @@ -18,7 +18,7 @@ suite Taf test read1 { #define FN_TMP ("/tmp/tmpXXXXXXXX") - Bu::FString sFnTmp(FN_TMP); + Bu::String sFnTmp(FN_TMP); Bu::File fOut = Bu::File::tempFile( sFnTmp ); const char *data = "{test: name=\"Bob\"}" @@ -43,7 +43,7 @@ suite Taf Bu::TafWriter tw( mb ); Bu::TafGroup g("Test data"); - Bu::FString sData( 256 ); + Bu::String sData( 256 ); for( int j = 0; j < 256; j++ ) sData[j] = (unsigned char)j; g.addChild( new Bu::TafProperty("Encoded", sData) ); @@ -87,7 +87,7 @@ suite Taf Bu::TafWriter tw( mb ); Bu::TafGroup g("Test Group"); - Bu::FString sVal; + Bu::String sVal; g.addChild( new Bu::TafProperty("Lame", sVal) ); tw.writeGroup( &g ); -- cgit v1.2.3