mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 01:21:17 +00:00
- renamed RIndexOf to RightIndexOf
This commit is contained in:
parent
b57d2f11f3
commit
23f2d9aaa0
2 changed files with 2 additions and 2 deletions
|
@ -1281,7 +1281,7 @@ DEFINE_ACTION_FUNCTION(FStringStruct, LastIndexOf)
|
||||||
ACTION_RETURN_INT(self->LastIndexOf(substr, endIndex));
|
ACTION_RETURN_INT(self->LastIndexOf(substr, endIndex));
|
||||||
}
|
}
|
||||||
|
|
||||||
DEFINE_ACTION_FUNCTION(FStringStruct, RIndexOf)
|
DEFINE_ACTION_FUNCTION(FStringStruct, RightIndexOf)
|
||||||
{
|
{
|
||||||
PARAM_SELF_STRUCT_PROLOGUE(FString);
|
PARAM_SELF_STRUCT_PROLOGUE(FString);
|
||||||
PARAM_STRING(substr);
|
PARAM_STRING(substr);
|
||||||
|
|
|
@ -810,7 +810,7 @@ struct StringStruct native
|
||||||
native String Filter();
|
native String Filter();
|
||||||
native int IndexOf(String substr, int startIndex = 0) const;
|
native int IndexOf(String substr, int startIndex = 0) const;
|
||||||
deprecated("3.5") native int LastIndexOf(String substr, int endIndex = 2147483647) const;
|
deprecated("3.5") native int LastIndexOf(String substr, int endIndex = 2147483647) const;
|
||||||
native int RIndexOf(String substr, int endIndex = 2147483647) const;
|
native int RightIndexOf(String substr, int endIndex = 2147483647) const;
|
||||||
native void ToUpper();
|
native void ToUpper();
|
||||||
native void ToLower();
|
native void ToLower();
|
||||||
native int ToInt(int base = 0) const;
|
native int ToInt(int base = 0) const;
|
||||||
|
|
Loading…
Reference in a new issue