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/archive.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/archive.h') diff --git a/src/archive.h b/src/archive.h index 9d2aee2..5294c15 100644 --- a/src/archive.h +++ b/src/archive.h @@ -111,7 +111,7 @@ namespace Bu void readID( const void *ptr, uint32_t id ); template - void setProp( const Bu::FString &sId, const t &val ) + void setProp( const Bu::String &sId, const t &val ) { if( !hProps.has( sId ) ) { @@ -121,7 +121,7 @@ namespace Bu } template - t getProp( const Bu::FString &sId ) + t getProp( const Bu::String &sId ) { return hProps.get( sId ); } @@ -131,7 +131,7 @@ namespace Bu uint32_t nNextID; Hash hPtrID; Hash > hPtrDest; - Hash hProps; + Hash hProps; }; } -- cgit v1.2.3