- Changed deprecations.

This commit is contained in:
drfrag 2019-05-14 20:10:58 +02:00
parent 1577da4186
commit 59633d8c72

View file

@ -873,15 +873,15 @@ struct StringStruct native
native String Mid(int pos = 0, int len = 2147483647) const;
native void Truncate(int newlen);
native void Remove(int index, int remlen);
deprecated("4.1") native String CharAt(int pos) const;
deprecated("4.1") native int CharCodeAt(int pos) const;
deprecated("3.9") native String CharAt(int pos) const;
deprecated("3.9") native int CharCodeAt(int pos) const;
native int ByteAt(int pos) const;
native String Filter();
native int IndexOf(String substr, int startIndex = 0) const;
deprecated("3.5.1") native int LastIndexOf(String substr, int endIndex = 2147483647) const;
native int RightIndexOf(String substr, int endIndex = 2147483647) const;
deprecated("4.1") native void ToUpper();
deprecated("4.1") native void ToLower();
deprecated("3.9") native void ToUpper();
deprecated("3.9") native void ToLower();
native String MakeUpper() const;
native String MakeLower() const;
native static int CharUpper(int ch);