From 36c36b53a129509d56fdaa0a7c9fcbcacd0c5826 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/kdewebdev@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- quanta/src/dtds.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'quanta/src/dtds.h') diff --git a/quanta/src/dtds.h b/quanta/src/dtds.h index 4f351182..0ecf30cb 100644 --- a/quanta/src/dtds.h +++ b/quanta/src/dtds.h @@ -44,7 +44,7 @@ struct DTDStruct; /** @short This class manages the DTD's for Quanta. * * The constructor only loads the necessary information from the description.rc file. - * The rest is later loaded on demand of the tqfind() function. + * The rest is later loaded on demand of the find() function. */ class DTDs : public TQObject { @@ -73,10 +73,10 @@ public: * @param dtdName name of the dtd, will be converted to lowercase inside * @return the found dtd structure */ - const DTDStruct * tqfind (const TQString &dtdName) + const DTDStruct * find (const TQString &dtdName) { -// kdDebug(24000) << "dtds::tqfind " << dtdName << endl; - DTDStruct *dtd = m_dict->tqfind(dtdName.lower()) ; +// kdDebug(24000) << "dtds::find " << dtdName << endl; + DTDStruct *dtd = m_dict->find(dtdName.lower()) ; if (dtd && ! dtd->loaded ) readTagDir2(dtd); return dtd; } @@ -93,7 +93,7 @@ public: */ TQString getDTDNickNameFromName(const TQString& name) { - DTDStruct *dtd = m_dict->tqfind(name); + DTDStruct *dtd = m_dict->find(name); if ( dtd ) return dtd->nickName; else -- cgit v1.2.1