diff options
Diffstat (limited to 'src/list.cpp')
-rw-r--r-- | src/list.cpp | 4 |
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 | ||
45 | void Gats::List::append( const Bu::FString &s ) | 45 | void 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 | ||
76 | void Gats::List::prepend( const Bu::FString &s ) | 76 | void 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 | } |