summaryrefslogtreecommitdiffstats
path: root/kdecore/kstringhandler.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-07 03:45:53 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-07 03:45:53 +0000
commit10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch)
tree4bc444c00a79e88105f2cfce5b6209994c413ca0 /kdecore/kstringhandler.h
parent307136d8eef0ba133b78ceee8e901138d4c996a1 (diff)
downloadtdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz
tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip
Revert automated changes
Sorry guys, they are just not ready for prime time Work will continue as always git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 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 2986e8799..47075a066 100644
--- a/kdecore/kstringhandler.h
+++ b/kdecore/kstringhandler.h
@@ -26,7 +26,7 @@
#include "kdelibs_export.h"
/**
- * This class tqcontains utility functions for handling strings.
+ * This class contains 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 tqcontains no data members of its own. All strings are cut
+ * This class contains 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 tqcontains: "some", "string", "for", "you__here"
+ * TQStringList contains: "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 tqcontains: "kparts", "reaches", "the parts other parts can't"
+ * TQStringList contains: "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 tqcontains: "Split", "me", "up ! I'm bored, OK ?"
+ * TQStringList contains: "Split", "me", "up ! I'm bored, OK ?"
* \endcode
*
* @param sep is the regular expression to use to delimit s.