mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- renamed RIndexOf to RightIndexOf
This commit is contained in:
parent
884de51b70
commit
c04c48d157
2 changed files with 2 additions and 2 deletions
|
@ -1273,7 +1273,7 @@ DEFINE_ACTION_FUNCTION(FStringStruct, LastIndexOf)
|
|||
ACTION_RETURN_INT(self->LastIndexOf(substr, endIndex));
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION(FStringStruct, RIndexOf)
|
||||
DEFINE_ACTION_FUNCTION(FStringStruct, RightIndexOf)
|
||||
{
|
||||
PARAM_SELF_STRUCT_PROLOGUE(FString);
|
||||
PARAM_STRING(substr);
|
||||
|
|
|
@ -816,7 +816,7 @@ struct StringStruct native
|
|||
native String Filter();
|
||||
native int IndexOf(String substr, int startIndex = 0) 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 ToLower();
|
||||
native int ToInt(int base = 0) const;
|
||||
|
|
Loading…
Reference in a new issue