From 6e21bc798ba1066147d69dcc2d5c222ffafb9a90 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/kdelibs@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- dnssd/domainbrowser.cpp | 2 +- dnssd/servicebase.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'dnssd') 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=""; -- cgit v1.2.1