summaryrefslogtreecommitdiffstats
path: root/diff_ext_for_kdiff3/diffextstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'diff_ext_for_kdiff3/diffextstring.h')
-rw-r--r--diff_ext_for_kdiff3/diffextstring.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/diff_ext_for_kdiff3/diffextstring.h b/diff_ext_for_kdiff3/diffextstring.h
index 0df947e..132512e 100644
--- a/diff_ext_for_kdiff3/diffextstring.h
+++ b/diff_ext_for_kdiff3/diffextstring.h
@@ -108,7 +108,7 @@ class STRING {
return tmp;
}
- STRING& tqreplace( size_t pos, size_t num, const STRING& s )
+ STRING& replace( size_t pos, size_t num, const STRING& s )
{
*this = substr( 0, pos ) + s + substr( pos+num );
return *this;
@@ -118,7 +118,7 @@ class STRING {
return (lstrcmp(_str, s) == 0);
}
- size_t tqfind(const STRING& s) const
+ size_t find(const STRING& s) const
{
const TCHAR* p = _tcsstr( _str, s._str );
if (p)