diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 0813b39aed2cf4c84157a22c4c9594336d93d412 (patch) | |
tree | 0f6157f9c9ecc6ed26cb98f058219a8021d3f4a6 /kbugbuster/backend/htmlparser.cpp | |
parent | 35dc58791106d7a1864264063df5f3ee3f1f0f15 (diff) | |
download | tdesdk-0813b39aed2cf4c84157a22c4c9594336d93d412.tar.gz tdesdk-0813b39aed2cf4c84157a22c4c9594336d93d412.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbugbuster/backend/htmlparser.cpp')
-rw-r--r-- | kbugbuster/backend/htmlparser.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/kbugbuster/backend/htmlparser.cpp b/kbugbuster/backend/htmlparser.cpp index e9840e6b..4daa3d1d 100644 --- a/kbugbuster/backend/htmlparser.cpp +++ b/kbugbuster/backend/htmlparser.cpp @@ -100,10 +100,10 @@ void HtmlParser::processResult( Package::List & ) TQString HtmlParser::getAttribute( const TQString &line, const TQString &name ) { - int pos1 = line.tqfind( name + "=\"" ); + int pos1 = line.find( name + "=\"" ); if ( pos1 < 1 ) return TQString(); pos1 += name.length() + 2; - int pos2 = line.tqfind( "\"", pos1 ); + int pos2 = line.find( "\"", pos1 ); if ( pos2 < 1 ) return TQString(); return line.mid( pos1, pos2 - pos1 ); } @@ -111,24 +111,24 @@ TQString HtmlParser::getAttribute( const TQString &line, const TQString &name ) bool HtmlParser::getCpts( const TQString &line, TQString &key, TQStringList &values ) { - if ( !line.tqcontains( TQRegExp( "\\s*cpts" ) ) ) return false; + if ( !line.contains( TQRegExp( "\\s*cpts" ) ) ) return false; // kdDebug() << "LINE: " << line << endl; - int pos1 = line.tqfind( "[" ); + int pos1 = line.find( "[" ); if ( pos1 < 0 ) return false; - int pos2 = line.tqfind( "]", ++pos1 ); + int pos2 = line.find( "]", ++pos1 ); if ( pos2 < 0 ) return false; key = line.mid( pos1, pos2 - pos1 ); - int pos3 = key.tqfind( "'" ); + int pos3 = key.find( "'" ); if ( pos3 >= 0 ) { - int pos4 = key.tqfind( "'", ++pos3 ); + int pos4 = key.find( "'", ++pos3 ); if ( pos4 >= 0 ) key = key.mid( pos3, pos4 - pos3 ); } // kdDebug() << " KEY: " << key << endl; - pos1 = line.tqfind( "'", ++pos2 ); - if ( pos1 >= 0 ) pos2 = line.tqfind( "'", ++pos1 ); + pos1 = line.find( "'", ++pos2 ); + if ( pos1 >= 0 ) pos2 = line.find( "'", ++pos1 ); while ( pos1 >= 0 && pos2 >= 0 ) { TQString value = line.mid( pos1, pos2 - pos1 ); @@ -136,8 +136,8 @@ bool HtmlParser::getCpts( const TQString &line, TQString &key, values.append( value ); - pos1 = line.tqfind( "'", ++pos2 ); - if ( pos1 >= 0 ) pos2 = line.tqfind( "'", ++pos1 ); + pos1 = line.find( "'", ++pos2 ); + if ( pos1 >= 0 ) pos2 = line.find( "'", ++pos1 ); } return true; @@ -153,7 +153,7 @@ KBB::Error HtmlParser_2_10::parseLine( const TQString &line, Bug::List &bugs ) // kdDebug() << " NUMBER: " << number << endl; TQString summary; - int pos = line.tqfindRev( "summary>" ); + int pos = line.findRev( "summary>" ); if ( pos >= 0 ) summary = line.mid( pos + 8 ); Bug bug( new BugImpl( summary, Person(), number, 0xFFFFFFFF, Bug::SeverityUndefined, @@ -248,13 +248,13 @@ KBB::Error HtmlParser_2_17_1::parseLine( const TQString &line, Package::List & ) switch ( mState ) { case Idle: case SearchComponents: - if ( line.tqcontains( "var cpts" ) ) mState = Components; + if ( line.contains( "var cpts" ) ) mState = Components; break; case SearchProducts: - if ( line.tqcontains( "onchange=\"selectProduct" ) ) mState = Products; + if ( line.contains( "onchange=\"selectProduct" ) ) mState = Products; break; case Components: { - if ( line.tqcontains( TQRegExp( "\\s*function" ) ) ) { + if ( line.contains( TQRegExp( "\\s*function" ) ) ) { mState = SearchProducts; } TQString key; @@ -264,7 +264,7 @@ KBB::Error HtmlParser_2_17_1::parseLine( const TQString &line, Package::List & ) } } case Products: { - if ( line.tqcontains( "</select>" ) ) mState = Finished; + if ( line.contains( "</select>" ) ) mState = Finished; TQString product = getAttribute( line, "value" ); if ( !product.isEmpty() ) { kdDebug() << "PRODUCT: " << product << endl; |