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 | d98fea1f859d23e1b1220a65d7a8eda3b757fd08 (patch) | |
tree | a7e6a450baf5017f93f73636f9e8f9b5e9a56f05 /src/libgui/likeback.cpp | |
parent | 704123e8152edcd80447659317f1c8b31a1576e6 (diff) | |
download | piklab-d98fea1f859d23e1b1220a65d7a8eda3b757fd08.tar.gz piklab-d98fea1f859d23e1b1220a65d7a8eda3b757fd08.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/piklab@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/libgui/likeback.cpp')
-rw-r--r-- | src/libgui/likeback.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libgui/likeback.cpp b/src/libgui/likeback.cpp index c174bbc..11fa9b9 100644 --- a/src/libgui/likeback.cpp +++ b/src/libgui/likeback.cpp @@ -408,11 +408,11 @@ bool LikeBack::isDevelopmentVersion(const TQString &version) { TQString theVersion = (version.isEmpty() ? s_about->version() : version); - return theVersion.tqfind("alpha", /*index=*/0, /*caseSensitive=*/false) != -1 || - theVersion.tqfind("beta", /*index=*/0, /*caseSensitive=*/false) != -1 || - theVersion.tqfind("rc", /*index=*/0, /*caseSensitive=*/false) != -1 || - theVersion.tqfind("svn", /*index=*/0, /*caseSensitive=*/false) != -1 || - theVersion.tqfind("cvs", /*index=*/0, /*caseSensitive=*/false) != -1; + return theVersion.find("alpha", /*index=*/0, /*caseSensitive=*/false) != -1 || + theVersion.find("beta", /*index=*/0, /*caseSensitive=*/false) != -1 || + theVersion.find("rc", /*index=*/0, /*caseSensitive=*/false) != -1 || + theVersion.find("svn", /*index=*/0, /*caseSensitive=*/false) != -1 || + theVersion.find("cvs", /*index=*/0, /*caseSensitive=*/false) != -1; } void LikeBack::init(KConfig* config, KAboutData* about, Button buttons) |