aboutsummaryrefslogtreecommitdiff
path: root/src/functiontostring.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/functiontostring.cpp')
-rw-r--r--src/functiontostring.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/functiontostring.cpp b/src/functiontostring.cpp
index 1d614ce..bc5db6c 100644
--- a/src/functiontostring.cpp
+++ b/src/functiontostring.cpp
@@ -16,15 +16,15 @@ FunctionToString::~FunctionToString()
16{ 16{
17} 17}
18 18
19Bu::FString FunctionToString::getName() const 19Bu::String FunctionToString::getName() const
20{ 20{
21 return "toString"; 21 return "toString";
22} 22}
23 23
24Variable FunctionToString::call( Variable &input, VarList lParams ) 24Variable FunctionToString::call( Variable &input, VarList lParams )
25{ 25{
26 Bu::FString sStr; 26 Bu::String sStr;
27 Bu::FString sSep; 27 Bu::String sSep;
28 if( lParams.getSize() == 0 ) 28 if( lParams.getSize() == 0 )
29 { 29 {
30 sSep = " "; 30 sSep = " ";