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/cryptohash.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/cryptohash.cpp') diff --git a/src/cryptohash.cpp b/src/cryptohash.cpp index 8aee415..bb07a4b 100644 --- a/src/cryptohash.cpp +++ b/src/cryptohash.cpp @@ -15,15 +15,15 @@ Bu::CryptoHash::~CryptoHash() { } -void Bu::CryptoHash::addData( const Bu::FString &sData ) +void Bu::CryptoHash::addData( const Bu::String &sData ) { addData( sData.getStr(), sData.getSize() ); } -Bu::FString Bu::CryptoHash::getHexResult() +Bu::String Bu::CryptoHash::getHexResult() { - Bu::FString sResult = getResult(); - Bu::FString sRet( 2*sResult.getSize() ); + Bu::String sResult = getResult(); + Bu::String sRet( 2*sResult.getSize() ); static const char hex_tab[] = {"0123456789abcdef"}; int k = 0; -- cgit v1.2.3