From 649f3d48bf88497f3e3214fed6401628bded8bfc Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: 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 --- src/part/localLister.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/part/localLister.cpp') 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"; -- cgit v1.2.1