aboutsummaryrefslogtreecommitdiff
path: root/src/functionmatches.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/functionmatches.h')
-rw-r--r--src/functionmatches.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/functionmatches.h b/src/functionmatches.h
index 7757a44..92ffe26 100644
--- a/src/functionmatches.h
+++ b/src/functionmatches.h
@@ -13,9 +13,9 @@ public:
13 * Really basic globbing function, it doesn't handle character classes, 13 * Really basic globbing function, it doesn't handle character classes,
14 * just * and ?. We can expand on it later, it may be handy. 14 * just * and ?. We can expand on it later, it may be handy.
15 */ 15 */
16 bool globcmp( const Bu::FString &sTxt, const Bu::FString &sMatches ); 16 bool globcmp( const Bu::String &sTxt, const Bu::String &sMatches );
17 bool matchlist( const Bu::FString &sTxt, VarList &lParams ); 17 bool matchlist( const Bu::String &sTxt, VarList &lParams );
18 virtual Bu::FString getName() const; 18 virtual Bu::String getName() const;
19 virtual Variable call( Variable &input, VarList lParams ); 19 virtual Variable call( Variable &input, VarList lParams );
20 20
21}; 21};