summaryrefslogtreecommitdiffstats
path: root/parts/ctags2/readtags.c
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
commit330c33ab6f97b279737bf9527c9add7bb1475450 (patch)
tree85cb998d3077ae295d65944ebb4d0189fc660ead /parts/ctags2/readtags.c
parent093de0db4fea89b3f94a2359c6981f353d035eb7 (diff)
downloadtdevelop-330c33ab6f97b279737bf9527c9add7bb1475450.tar.gz
tdevelop-330c33ab6f97b279737bf9527c9add7bb1475450.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'parts/ctags2/readtags.c')
-rw-r--r--parts/ctags2/readtags.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/parts/ctags2/readtags.c b/parts/ctags2/readtags.c
index dce0a2e8..38014d3f 100644
--- a/parts/ctags2/readtags.c
+++ b/parts/ctags2/readtags.c
@@ -649,7 +649,7 @@ static tagResult findSequential (tagFile *const file)
return result;
}
-static tagResult tqfind (tagFile *const file, tagEntry *const entry,
+static tagResult find (tagFile *const file, tagEntry *const entry,
const char *const name, const int options)
{
tagResult result = TagFailure;
@@ -758,7 +758,7 @@ extern tagResult tagsFind (tagFile *const file, tagEntry *const entry,
{
tagResult result = TagFailure;
if (file != NULL && file->initialized)
- result = tqfind (file, entry, name, options);
+ result = find (file, entry, name, options);
return result;
}