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/tests/archive.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tests/archive.cpp') diff --git a/src/tests/archive.cpp b/src/tests/archive.cpp index 08e3b17..de227b0 100644 --- a/src/tests/archive.cpp +++ b/src/tests/archive.cpp @@ -7,7 +7,7 @@ #include "bu/archive.h" #include "bu/file.h" -#include "bu/fstring.h" +#include "bu/string.h" using namespace Bu; @@ -16,7 +16,7 @@ int main() File f("test.dat", File::WriteNew ); Archive ar( f, Archive::save ); - Bu::FString s("Hello there"); + Bu::String s("Hello there"); ar << s; ar.setProp("hi", 45 ); -- cgit v1.2.3