summaryrefslogtreecommitdiffstats
path: root/src/kile/main.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
commite7943f0f55e7680153deace7e00370bb7d6a82c9 (patch)
tree7f33ef686d468270850553eb895422da0f4d007f /src/kile/main.cpp
parentb9ce99f4e5f244800fb4f5f10c15799fa02a80a2 (diff)
downloadkile-e7943f0f55e7680153deace7e00370bb7d6a82c9.tar.gz
kile-e7943f0f55e7680153deace7e00370bb7d6a82c9.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kile@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kile/main.cpp')
-rw-r--r--src/kile/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kile/main.cpp b/src/kile/main.cpp
index 4b73474..70621da 100644
--- a/src/kile/main.cpp
+++ b/src/kile/main.cpp
@@ -63,7 +63,7 @@ TQString completePath(const TQString &path)
url.setFileName(completePath(url.path()));
fullpath = url.url();
}
- else if ( path.tqfind(TQRegExp("^[a-z]+:")) == -1 )
+ else if ( path.find(TQRegExp("^[a-z]+:")) == -1 )
fullpath = TQDir::currentDirPath() + '/' + path;
}
@@ -104,7 +104,7 @@ int main( int argc, char ** argv )
for ( QCStringList::Iterator it = apps.begin(); it != apps.end(); ++it )
{
- if ((*it).tqcontains ("kile") > 0)
+ if ((*it).contains ("kile") > 0)
{
appID = (*it);
running = true;