diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 5173e6fcb16310e130fba4143e334563b4f8460e (patch) | |
tree | 52333f9eb0c94f760d4dddc8714671fb50f7b625 /src/pdiff.cpp | |
parent | 7b4db4f16d44d4e9aeee241211827558acd64f17 (diff) | |
download | kdiff3-5173e6fcb16310e130fba4143e334563b4f8460e.tar.gz kdiff3-5173e6fcb16310e130fba4143e334563b4f8460e.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdiff3@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/pdiff.cpp')
-rw-r--r-- | src/pdiff.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pdiff.cpp b/src/pdiff.cpp index bf9be72..b481cd6 100644 --- a/src/pdiff.cpp +++ b/src/pdiff.cpp @@ -465,11 +465,11 @@ void KDiff3App::init( bool bAuto, TotalDifftqStatus* pTotalDifftqStatus, bool bL TQString a3 = m_sd3.getAliasName(); TQString f1, f2, f3; int p1,p2,p3; - if ( !a1.isEmpty() && (p1=a1.tqfindRev('/'))>=0 ) + if ( !a1.isEmpty() && (p1=a1.findRev('/'))>=0 ) f1 = a1.mid( p1+1 ); - if ( !a2.isEmpty() && (p2=a2.tqfindRev('/'))>=0 ) + if ( !a2.isEmpty() && (p2=a2.findRev('/'))>=0 ) f2 = a2.mid( p2+1 ); - if ( !a3.isEmpty() && (p3=a3.tqfindRev('/'))>=0 ) + if ( !a3.isEmpty() && (p3=a3.findRev('/'))>=0 ) f3 = a3.mid( p3+1 ); if ( !f1.isEmpty() ) { |