diff options
| author | Juan Linietsky | 2017-06-26 17:36:42 -0300 |
|---|---|---|
| committer | GitHub | 2017-06-26 17:36:42 -0300 |
| commit | 340c0ba0a0697773ec31b9997209a0301c243269 (patch) | |
| tree | ef675ac0fcbcc40344d975bb86ce71a6b0649abe /modules/regex/regex.cpp | |
| parent | 5590dd7fb4e573f355b5484be16d8bf0c08b061c (diff) | |
| download | godot-340c0ba0a0697773ec31b9997209a0301c243269.tar.gz godot-340c0ba0a0697773ec31b9997209a0301c243269.tar.zst godot-340c0ba0a0697773ec31b9997209a0301c243269.zip | |
Diffstat (limited to 'modules/regex/regex.cpp')
| -rw-r--r-- | modules/regex/regex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/regex/regex.cpp b/modules/regex/regex.cpp index c3e97e357..c728657d6 100644 --- a/modules/regex/regex.cpp +++ b/modules/regex/regex.cpp @@ -1496,7 +1496,7 @@ void RegEx::_bind_methods() { ClassDB::bind_method(D_METHOD("clear"), &RegEx::clear); ClassDB::bind_method(D_METHOD("compile", "pattern"), &RegEx::compile); - ClassDB::bind_method(D_METHOD("search:RegExMatch", "text", "start", "end"), &RegEx::search, DEFVAL(0), DEFVAL(-1)); + ClassDB::bind_method(D_METHOD("search", "text", "start", "end"), &RegEx::search, DEFVAL(0), DEFVAL(-1)); ClassDB::bind_method(D_METHOD("sub", "text", "replacement", "all", "start", "end"), &RegEx::sub, DEFVAL(false), DEFVAL(0), DEFVAL(-1)); ClassDB::bind_method(D_METHOD("is_valid"), &RegEx::is_valid); ClassDB::bind_method(D_METHOD("get_pattern"), &RegEx::get_pattern); |
