summaryrefslogtreecommitdiffstats
path: root/kio/kio/ksambashare.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kio/kio/ksambashare.cpp')
-rw-r--r--kio/kio/ksambashare.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kio/kio/ksambashare.cpp b/kio/kio/ksambashare.cpp
index 3eea9e145..08da8352c 100644
--- a/kio/kio/ksambashare.cpp
+++ b/kio/kio/ksambashare.cpp
@@ -144,7 +144,7 @@ bool KSambaSharePrivate::readSmbConf() {
}
// parameter
- int i = completeLine.tqfind('=');
+ int i = completeLine.find('=');
if (i>-1)
{
@@ -203,7 +203,7 @@ bool KSambaShare::isDirectoryShared( const TQString & path ) const {
if ( path[path.length()-1] != '/' )
fixedPath += '/';
- return d->sharedPaths.tqfind(fixedPath) != 0;
+ return d->sharedPaths.find(fixedPath) != 0;
}
TQStringList KSambaShare::sharedDirectories() const {