aboutsummaryrefslogtreecommitdiff
path: root/src/list.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-01-20 18:16:38 +0000
committerMike Buland <eichlan@xagasoft.com>2011-01-20 18:16:38 +0000
commit7292af7c475c61920987ec498144a3fd1e90f1e8 (patch)
tree4bc09eea26fb13915395642311f0617f1c0bff4e /src/list.cpp
parent4a6e25854a3b70c8d7a526a22a78760b97118669 (diff)
downloadlibgats-7292af7c475c61920987ec498144a3fd1e90f1e8.tar.gz
libgats-7292af7c475c61920987ec498144a3fd1e90f1e8.tar.bz2
libgats-7292af7c475c61920987ec498144a3fd1e90f1e8.tar.xz
libgats-7292af7c475c61920987ec498144a3fd1e90f1e8.zip
Updated with new Bu::String.
Diffstat (limited to 'src/list.cpp')
-rw-r--r--src/list.cpp4
1 files changed, 2 insertions, 2 deletions
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 )
42 Bu::List<Gats::Object *>::append( new Gats::String( s ) ); 42 Bu::List<Gats::Object *>::append( new Gats::String( s ) );
43} 43}
44 44
45void Gats::List::append( const Bu::FString &s ) 45void Gats::List::append( const Bu::String &s )
46{ 46{
47 Bu::List<Gats::Object *>::append( new Gats::String( s ) ); 47 Bu::List<Gats::Object *>::append( new Gats::String( s ) );
48} 48}
@@ -73,7 +73,7 @@ void Gats::List::prepend( const char *s )
73 Bu::List<Gats::Object *>::prepend( new Gats::String( s ) ); 73 Bu::List<Gats::Object *>::prepend( new Gats::String( s ) );
74} 74}
75 75
76void Gats::List::prepend( const Bu::FString &s ) 76void Gats::List::prepend( const Bu::String &s )
77{ 77{
78 Bu::List<Gats::Object *>::prepend( new Gats::String( s ) ); 78 Bu::List<Gats::Object *>::prepend( new Gats::String( s ) );
79} 79}