summaryrefslogtreecommitdiffstats
path: root/src/part/localLister.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/part/localLister.cpp')
-rw-r--r--src/part/localLister.cpp8
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";