From 7292af7c475c61920987ec498144a3fd1e90f1e8 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 18:16:38 +0000 Subject: Updated with new Bu::String. --- src/list.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/list.cpp') diff --git a/src/list.cpp b/src/list.cpp index 0e5f56f..02e2a8d 100644 --- a/src/list.cpp +++ b/src/list.cpp @@ -42,7 +42,7 @@ void Gats::List::append( const char *s ) Bu::List::append( new Gats::String( s ) ); } -void Gats::List::append( const Bu::FString &s ) +void Gats::List::append( const Bu::String &s ) { Bu::List::append( new Gats::String( s ) ); } @@ -73,7 +73,7 @@ void Gats::List::prepend( const char *s ) Bu::List::prepend( new Gats::String( s ) ); } -void Gats::List::prepend( const Bu::FString &s ) +void Gats::List::prepend( const Bu::String &s ) { Bu::List::prepend( new Gats::String( s ) ); } -- cgit v1.2.3