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 | 649f3d48bf88497f3e3214fed6401628bded8bfc (patch) | |
tree | 0d5c164d0e33f646e4806bdae989c5603d2ad7a8 /src/part/localLister.cpp | |
parent | 1f0e7cefe5c3898d269460c03b24d58921d48102 (diff) | |
download | filelight-649f3d48bf88497f3e3214fed6401628bded8bfc.tar.gz filelight-649f3d48bf88497f3e3214fed6401628bded8bfc.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/filelight@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/part/localLister.cpp')
-rw-r--r-- | src/part/localLister.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/part/localLister.cpp b/src/part/localLister.cpp index 363b093..d022eae 100644 --- a/src/part/localLister.cpp +++ b/src/part/localLister.cpp @@ -282,7 +282,7 @@ namespace Filelight if( str == "/" ) continue; str += '/'; - if( remoteFsTypes.tqcontains( FS_TYPE ) ) + if( remoteFsTypes.contains( FS_TYPE ) ) s_remoteMounts.append( str ); //**** NO! can't be sure won't have trailing slash, need to do a check first dummy!! else @@ -314,11 +314,11 @@ namespace Filelight if( str == "/" ) continue; str += "/"; - if( remoteFsTypes.tqcontains( FS_TYPE ) ) - if( b = !s_remoteMounts.tqcontains( str ) ) + if( remoteFsTypes.contains( FS_TYPE ) ) + if( b = !s_remoteMounts.contains( str ) ) s_remoteMounts.append( str ); //**** NO! can't be sure won't have trailing slash, need to do a check first dummy!! - else if( b = !s_localMounts.tqcontains( str ) ) + else if( b = !s_localMounts.contains( str ) ) s_localMounts.append( str ); //**** NO! can't be sure won't have trailing slash, need to do a check first dummy!! if( b ) kdDebug() << "MTAB: " << FS_TYPE << "\n"; |