| Index: include/core/SkString.h
|
| diff --git a/include/core/SkString.h b/include/core/SkString.h
|
| index 7766c5711f7a5ba7e087282ead20bf647bc891fc..bd1afff8c22140c7289fa817c920463b9e31d0ad 100644
|
| --- a/include/core/SkString.h
|
| +++ b/include/core/SkString.h
|
| @@ -215,6 +215,8 @@ public:
|
|
|
| void remove(size_t offset, size_t length);
|
|
|
| + void replace(SkUnichar oldChar, SkUnichar newChar);
|
| +
|
| SkString& operator+=(const SkString& s) { this->append(s); return *this; }
|
| SkString& operator+=(const char text[]) { this->append(text); return *this; }
|
| SkString& operator+=(const char c) { this->append(&c, 1); return *this; }
|
|
|