diff options
Diffstat (limited to 'dnssd')
-rw-r--r-- | dnssd/domainbrowser.cpp | 2 | ||||
-rw-r--r-- | dnssd/servicebase.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dnssd/domainbrowser.cpp b/dnssd/domainbrowser.cpp index 6cab652ac..8a24f11b6 100644 --- a/dnssd/domainbrowser.cpp +++ b/dnssd/domainbrowser.cpp @@ -125,7 +125,7 @@ void DomainBrowser::startBrowse() void DomainBrowser::gotNewDomain(const TQString& domain) { - if (d->m_domains.tqcontains(domain)) return; + if (d->m_domains.contains(domain)) return; d->m_domains.append(domain); emit domainAdded(domain); } diff --git a/dnssd/servicebase.cpp b/dnssd/servicebase.cpp index 544b56fbb..6782c822d 100644 --- a/dnssd/servicebase.cpp +++ b/dnssd/servicebase.cpp @@ -51,14 +51,14 @@ void ServiceBase::decode(const TQString& name) } else { // normal service or domain TQString decoded_name=name; decoded_name=decoded_name.replace("\\\\","\\"); - int i = decoded_name.tqfind(TQRegExp("[^\\\\]\\.")); + int i = decoded_name.find(TQRegExp("[^\\\\]\\.")); if (i==-1) return; // first find service name rest = decoded_name.mid(i+2); m_serviceName=decoded_name.left(i+1).replace("\\.","."); } m_type = rest.section('.',0,1); // does it really have a type? - if (m_type[0]=='_' && m_type[m_type.tqfind('.')+1]=='_') + if (m_type[0]=='_' && m_type[m_type.find('.')+1]=='_') m_domain = rest.section('.',2,-1,TQString::SectionIncludeTrailingSep); else { m_type=""; |