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/uuid.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/uuid.cpp') diff --git a/src/uuid.cpp b/src/uuid.cpp index 410cf6b..f46d2ae 100644 --- a/src/uuid.cpp +++ b/src/uuid.cpp @@ -25,12 +25,12 @@ Bu::Uuid::~Uuid() { } -Bu::FString Bu::Uuid::toRawString() +Bu::String Bu::Uuid::toRawString() { - return Bu::FString( (char *)data, 16 ); + return Bu::String( (char *)data, 16 ); } -Bu::FString Bu::Uuid::toString() +Bu::String Bu::Uuid::toString() { Bu::MemBuf mb; Bu::Formatter f( mb ); -- cgit v1.2.3