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 | 330c33ab6f97b279737bf9527c9add7bb1475450 (patch) | |
| tree | 85cb998d3077ae295d65944ebb4d0189fc660ead /lib/widgets/kdevhtmlpart.cpp | |
| parent | 093de0db4fea89b3f94a2359c6981f353d035eb7 (diff) | |
| download | tdevelop-330c33ab6f97b279737bf9527c9add7bb1475450.tar.gz tdevelop-330c33ab6f97b279737bf9527c9add7bb1475450.zip | |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/widgets/kdevhtmlpart.cpp')
| -rw-r--r-- | lib/widgets/kdevhtmlpart.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/lib/widgets/kdevhtmlpart.cpp b/lib/widgets/kdevhtmlpart.cpp index 5bda3bed..220b846a 100644 --- a/lib/widgets/kdevhtmlpart.cpp +++ b/lib/widgets/kdevhtmlpart.cpp @@ -254,7 +254,7 @@ TQString KDevHTMLPart::resolveEnvVarsInURL(const TQString& url)  {    // check for environment variables and make necessary translations    TQString path = url; -  int nDollarPos = path.tqfind( '$' ); +  int nDollarPos = path.find( '$' );    // Note: the while loop below is a copy of code in kdecore/kconfigbase.cpp ;)    while( nDollarPos != -1 && nDollarPos+1 < static_cast<int>(path.length())) { @@ -275,7 +275,7 @@ TQString KDevHTMLPart::resolveEnvVarsInURL(const TQString& url)           result = ts.read().stripWhiteSpace();           pclose(fs);        } -      path.tqreplace( nDollarPos, nEndPos-nDollarPos, result ); +      path.replace( nDollarPos, nEndPos-nDollarPos, result );      } else if( (path)[nDollarPos+1] != '$' ) {        uint nEndPos = nDollarPos+1;        // the next character is no $ @@ -302,9 +302,9 @@ TQString KDevHTMLPart::resolveEnvVarsInURL(const TQString& url)          // A environment variables may contain values in 8bit          // locale cpecified encoding or in UTF8 encoding.          if (isUtf8( pEnv )) -            path.tqreplace( nDollarPos, nEndPos-nDollarPos, TQString::fromUtf8(pEnv) ); +            path.replace( nDollarPos, nEndPos-nDollarPos, TQString::fromUtf8(pEnv) );          else -            path.tqreplace( nDollarPos, nEndPos-nDollarPos, TQString::fromLocal8Bit(pEnv) ); +            path.replace( nDollarPos, nEndPos-nDollarPos, TQString::fromLocal8Bit(pEnv) );        } else        path.remove( nDollarPos, nEndPos-nDollarPos );      } else { @@ -312,7 +312,7 @@ TQString KDevHTMLPart::resolveEnvVarsInURL(const TQString& url)        path.remove( nDollarPos, 1 );        nDollarPos++;      } -    nDollarPos = path.tqfind( '$', nDollarPos ); +    nDollarPos = path.find( '$', nDollarPos );    }    return path; @@ -494,7 +494,7 @@ void KDevHTMLPart::addHistoryEntry()  void KDevHTMLPart::slotCopy( )  {      TQString text = selectedText(); -    text.tqreplace( TQChar( 0xa0 ), ' ' ); +    text.replace( TQChar( 0xa0 ), ' ' );      TQClipboard *cb = TQApplication::tqclipboard();      disconnect( cb, TQT_SIGNAL( selectionChanged() ), this, TQT_SLOT( slotClearSelection() ) );      cb->setText(text); | 
