1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

- Fixed spaces in plstring docs

- Moved the CRT flag
- removed format tests as plString::format is deprecated.
This commit is contained in:
Anne Marije v/d Meer
2014-10-18 16:18:27 +02:00
parent bc3f64274c
commit eeec4bac56
4 changed files with 8 additions and 25 deletions

View File

@ -532,22 +532,22 @@ public:
/** Inverse of operator==(const plString &) const. */
bool operator!=(const plString &other) const { return Compare(other) != 0; }
/** Find the index(in bytes) of the first instance of \a ch in this string.
/** Find the index (in bytes) of the first instance of \a ch in this string.
* \return -1 if the character was not found.
*/
ssize_t Find(char ch, CaseSensitivity sense = kCaseSensitive) const;
/** Find the index(in bytes) of the last instance of \a ch in this string.
/** Find the index (in bytes) of the last instance of \a ch in this string.
* \return -1 if the character was not found.
*/
ssize_t FindLast(char ch, CaseSensitivity sense = kCaseSensitive) const;
/** Find the index(in bytes) of the first instance of \a str in this string.
/** Find the index (in bytes) of the first instance of \a str in this string.
* \return -1 if the substring was not found.
*/
ssize_t Find(const char *str, CaseSensitivity sense = kCaseSensitive) const;
/** Find the index(in bytes) of the first instance of \a str in this string.
/** Find the index (in bytes) of the first instance of \a str in this string.
* \return -1 if the substring was not found.
*/
ssize_t Find(const plString &str, CaseSensitivity sense = kCaseSensitive) const
@ -583,8 +583,8 @@ public:
*/
plString Trim(const char *charset = WHITESPACE_CHARS) const;
/** Return a substring starting at index(in bytes) \a start, with up to \a size
* characters(in bytes) from the start position. If \a size is greater than the
/** Return a substring starting at index (in bytes) \a start, with up to \a size
* characters (in bytes) from the start position. If \a size is greater than the
* number of characters left in the string after \a start, Substr will
* return the remainder of the string.
*/