summaryrefslogtreecommitdiffstats
path: root/kdecore/kstringhandler.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 04:12:51 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 04:12:51 +0000
commit560378aaca1784ba19806a0414a32b20c744de39 (patch)
treece0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdecore/kstringhandler.h
parentd4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff)
downloadtdelibs-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/kstringhandler.h')
-rw-r--r--kdecore/kstringhandler.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdecore/kstringhandler.h b/kdecore/kstringhandler.h
index 47075a066..2986e8799 100644
--- a/kdecore/kstringhandler.h
+++ b/kdecore/kstringhandler.h
@@ -26,7 +26,7 @@
#include "kdelibs_export.h"
/**
- * This class contains utility functions for handling strings.
+ * This class tqcontains utility functions for handling strings.
*
* This class is @em not a substitute for the TQString class. What
* I tried to do with this class is provide an easy way to
@@ -45,7 +45,7 @@
* a string. These ranges function, for the large part, as they would in
* python. See the word(const TQString&, const char *) and remword(const TQString&, uint) functions for more detail.
*
- * This class contains no data members of its own. All strings are cut
+ * This class tqcontains no data members of its own. All strings are cut
* on the fly and returned as new qstrings/qstringlists.
*
* Quick example on how to use:
@@ -331,7 +331,7 @@ public:
* Example:
* \code
* perlSplit("__", "some__string__for__you__here", 4)
- * TQStringList contains: "some", "string", "for", "you__here"
+ * TQStringList tqcontains: "some", "string", "for", "you__here"
* \endcode
*
* @param sep is the string to use to delimit s.
@@ -351,7 +351,7 @@ public:
* Example:
* \code
* perlSplit(' ', "kparts reaches the parts other parts can't", 3)
- * TQStringList contains: "kparts", "reaches", "the parts other parts can't"
+ * TQStringList tqcontains: "kparts", "reaches", "the parts other parts can't"
* \endcode
*
* @param sep is the character to use to delimit s.
@@ -371,7 +371,7 @@ public:
* Example:
* \code
* perlSplit(TQRegExp("[! ]", "Split me up ! I'm bored ! OK ?", 3)
- * TQStringList contains: "Split", "me", "up ! I'm bored, OK ?"
+ * TQStringList tqcontains: "Split", "me", "up ! I'm bored, OK ?"
* \endcode
*
* @param sep is the regular expression to use to delimit s.