diff options
Diffstat (limited to '')
-rw-r--r-- | src/functionexists.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/functionexists.cpp b/src/functionexists.cpp index 2207f84..5c71874 100644 --- a/src/functionexists.cpp +++ b/src/functionexists.cpp | |||
@@ -14,14 +14,14 @@ FunctionExists::~FunctionExists() | |||
14 | { | 14 | { |
15 | } | 15 | } |
16 | 16 | ||
17 | Bu::FString FunctionExists::getName() const | 17 | Bu::String FunctionExists::getName() const |
18 | { | 18 | { |
19 | return "exists"; | 19 | return "exists"; |
20 | } | 20 | } |
21 | 21 | ||
22 | Variable FunctionExists::call( Variable &input, VarList lParams ) | 22 | Variable FunctionExists::call( Variable &input, VarList lParams ) |
23 | { | 23 | { |
24 | Bu::FString sFile; | 24 | Bu::String sFile; |
25 | if( input.getType() != Variable::typeNone ) | 25 | if( input.getType() != Variable::typeNone ) |
26 | { | 26 | { |
27 | sFile = input.toString(); | 27 | sFile = input.toString(); |