From 944e2b6a9d8ee97c3202ac0403edec234d0bfa31 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 24 Apr 2023 10:37:48 -0700 Subject: More tweaks to make things easier to transition. --- src/unstable/utfstring.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/unstable/utfstring.cpp') diff --git a/src/unstable/utfstring.cpp b/src/unstable/utfstring.cpp index 6217f80..13a6046 100644 --- a/src/unstable/utfstring.cpp +++ b/src/unstable/utfstring.cpp @@ -729,11 +729,12 @@ bool Bu::UtfString::operator>=( const Bu::UtfString &rhs ) const return false; } -Bu::Blob Bu::UtfString::get( Encoding eEnc ) const +Bu::String Bu::UtfString::get( Encoding eEnc ) const { Bu::MemBuf mb; write( mb, eEnc ); - return Bu::Blob( mb.getString().getStr(), mb.getString().getSize() ); + //return Bu::Blob( mb.getString().getStr(), mb.getString().getSize() ); + return Bu::String( mb.getString().getStr(), mb.getString().getSize() ); } void Bu::UtfString::debug() const -- cgit v1.2.3