diff options
| author | 2011-01-12 15:56:03 +0000 | |
|---|---|---|
| committer | 2011-01-12 15:56:03 +0000 | |
| commit | 6f4d32a59c9ef20eca700e50d35ed4b5073059f5 (patch) | |
| tree | a29ca67c1037ec62d25081e7b4fa0d9e684a8054 /src/lib | |
| parent | 9388e1c38b4ce50598489fe4bbc38b773b441328 (diff) | |
revert silly change
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/util/astring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/astring.h b/src/lib/util/astring.h index aeaa954afbf..c39c277401b 100644 --- a/src/lib/util/astring.h +++ b/src/lib/util/astring.h @@ -387,7 +387,7 @@ public: int find(int start, const char *search) const { return astring_findc(this, start, search); } int replace(int start, const astring &search, const astring &replace) { return astring_replace(this, start, &search, &replace); } - int replacec(int start, const char *search, const char *replace) { return astring_replacec(this, start, search, replace); } + int replace(int start, const char *search, const char *replace) { return astring_replacec(this, start, search, replace); } astring &delchr(int ch) { return *astring_delchr(this, ch); } astring &replacechr(int ch, int newch) { return *astring_replacechr(this, ch, newch); } |
