summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/editproperty_impl.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit93f9fda465964160b66d9252d2cf9b4c284eab50 (patch)
tree51575108fadbf39900f2168fc504ad66b59906c3 /src/svnfrontend/editproperty_impl.cpp
parent4be907152dfb5461311d9db1d63120c28a0bad0a (diff)
downloadtdesvn-93f9fda465964160b66d9252d2cf9b4c284eab50.tar.gz
tdesvn-93f9fda465964160b66d9252d2cf9b4c284eab50.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/svnfrontend/editproperty_impl.cpp')
-rw-r--r--src/svnfrontend/editproperty_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/svnfrontend/editproperty_impl.cpp b/src/svnfrontend/editproperty_impl.cpp
index 8fe82fe..626c122 100644
--- a/src/svnfrontend/editproperty_impl.cpp
+++ b/src/svnfrontend/editproperty_impl.cpp
@@ -137,14 +137,14 @@ void EditProperty_impl::updateToolTip(const TQString & selection)
int i;
if (isDir) {
- i = dirProperties.tqfindIndex(selection);
+ i = dirProperties.findIndex(selection);
if (i >= 0) {
comment = dirComments[i];
} else {
comment = "No help for this property available";
}
} else {
- i = fileProperties.tqfindIndex(selection);
+ i = fileProperties.findIndex(selection);
if (i >= 0) {
comment = fileComments[i];
} else {