diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
commit | 560378aaca1784ba19806a0414a32b20c744de39 (patch) | |
tree | ce0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdecore/kurl.h | |
parent | d4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff) | |
download | tdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kurl.h')
-rw-r--r-- | kdecore/kurl.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kdecore/kurl.h b/kdecore/kurl.h index 86c7aa169..8546d3394 100644 --- a/kdecore/kurl.h +++ b/kdecore/kurl.h @@ -171,7 +171,7 @@ public: */ URL, /** - * Mailto URI. path() contains an email address which should have its + * Mailto URI. path() tqcontains an email address which should have its * domain part processed as a DNS name. The email address is accessible * through the path() method. */ @@ -179,7 +179,7 @@ public: }; /** - * KURL::List is a TQValueList that contains KURLs with a few + * KURL::List is a TQValueList that tqcontains KURLs with a few * convenience methods. * @see KURL * @see QValueList @@ -192,13 +192,13 @@ public: */ List() { } /** - * @brief Creates a list that contains the given URL as only item + * @brief Creates a list that tqcontains the given URL as only item * * @param url the URL to add */ List(const KURL &url); /** - * @brief Creates a list that contains the URLs from the given list + * @brief Creates a list that tqcontains the URLs from the given list * * This equivalent to iterating over the input list and using each item * as the argument to KURL's constructor, i.e. the resulting list will @@ -281,7 +281,7 @@ public: * See TQTextCodec::mibEnum() * * @see fromPathOrURL() - * @see TQString::fromLatin1() + * @see TQString::tqfromLatin1() */ KURL( const char * url, int encoding_hint = 0 ); /** @@ -307,7 +307,7 @@ public: * See TQTextCodec::mibEnum() * * @see fromPathOrURL() - * @see TQString::fromLatin1() + * @see TQString::tqfromLatin1() */ KURL( const TQCString& url, int encoding_hint = 0 ); @@ -838,7 +838,7 @@ public: * @brief Adds file encoding information * * Adds encoding information to the URL by adding a @c "charset" parameter. - * If there is already a charset parameter, it will be replaced. + * If there is already a charset parameter, it will be tqreplaced. * * @param encoding the encoding to add or @c TQString::null to remove the * encoding @@ -957,7 +957,7 @@ public: /** * @brief Adds an additional query item * - * To replace an existing query item, the item should first be + * To tqreplace an existing query item, the item should first be * removed with removeQueryItem() * * @param _item name of item to add @@ -1586,7 +1586,7 @@ public: * * Convenience function. * - * Convert unicoded string to local encoding and use %%-style + * Convert tqunicoded string to local encoding and use %%-style * encoding for all common delimiters / non-ascii characters. * * @param str the string to encode (can be @c TQString::null) @@ -1605,7 +1605,7 @@ public: * * Convenience function. * - * Convert unicoded string to local encoding and use %%-style + * Convert tqunicoded string to local encoding and use %%-style * encoding for all common delimiters and non-ascii characters * as well as the slash @c '/'. * @@ -1623,7 +1623,7 @@ public: * * Convenience function. * - * Decode %-style encoding and convert from local encoding to unicode. + * Decode %-style encoding and convert from local encoding to tqunicode. * * Reverse of encode_string() * |