diff options
Diffstat (limited to 'lib/widgets/kdevhtmlpart.cpp')
-rw-r--r-- | lib/widgets/kdevhtmlpart.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/kdevhtmlpart.cpp b/lib/widgets/kdevhtmlpart.cpp index 220b846a..690c39ac 100644 --- a/lib/widgets/kdevhtmlpart.cpp +++ b/lib/widgets/kdevhtmlpart.cpp @@ -169,7 +169,7 @@ TQString KDevHTMLPart::context() const } -// Note: this function is a copy of code in kdecore/kconfigbase.cpp ;) +// Note: this function is a copy of code in tdecore/kconfigbase.cpp ;) static bool isUtf8(const char *buf) { int i, n; register unsigned char c; @@ -256,7 +256,7 @@ TQString KDevHTMLPart::resolveEnvVarsInURL(const TQString& url) TQString path = url; int nDollarPos = path.find( '$' ); - // Note: the while loop below is a copy of code in kdecore/kconfigbase.cpp ;) + // Note: the while loop below is a copy of code in tdecore/kconfigbase.cpp ;) while( nDollarPos != -1 && nDollarPos+1 < static_cast<int>(path.length())) { // there is at least one $ if( (path)[nDollarPos+1] == '(' ) { |