From 67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 13 Apr 2011 00:46:47 +0000 Subject: Initial conversion of kdepim to TQt This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- mimelib/doc/string.html | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'mimelib/doc/string.html') diff --git a/mimelib/doc/string.html b/mimelib/doc/string.html index 7c2f4f237..fe16aed4d 100644 --- a/mimelib/doc/string.html +++ b/mimelib/doc/string.html @@ -70,14 +70,14 @@ public: void swap(DwString& aStr); const char* c_str() const; const char* data() const; - size_t find(const DwString& aStr, size_t aPos=0) const; - size_t find(const char* aBuf, size_t aPos, size_t aLen) const; - size_t find(const char* aCstr, size_t aPos=0) const; - size_t find(char aChar, size_t aPos=0) const; - size_t rfind(const DwString& aStr, size_t aPos=npos) const; - size_t rfind(const char* aBuf, size_t aPos, size_t aLen) const; - size_t rfind(const char* aCstr, size_t aPos=npos) const; - size_t rfind(char aChar, size_t aPos=npos) const; + size_t tqfind(const DwString& aStr, size_t aPos=0) const; + size_t tqfind(const char* aBuf, size_t aPos, size_t aLen) const; + size_t tqfind(const char* aCstr, size_t aPos=0) const; + size_t tqfind(char aChar, size_t aPos=0) const; + size_t rtqfind(const DwString& aStr, size_t aPos=npos) const; + size_t rtqfind(const char* aBuf, size_t aPos, size_t aLen) const; + size_t rtqfind(const char* aCstr, size_t aPos=npos) const; + size_t rtqfind(char aChar, size_t aPos=npos) const; size_t find_first_of(const DwString& aStr, size_t aPos=0) const; size_t find_first_of(const char* aBuf, size_t aPos, size_t aLen) const; size_t find_first_of(const char* aCstr, size_t aPos=0) const; @@ -441,11 +441,11 @@ The characters in the returned string should not be modified, and should be considered invalid after any call to a non-const member function or another call to c_str().

- size_t find(const DwString& + size_t tqfind(const DwString& aStr, size_t aPos=0) const
-size_t find(const char* aBuf, size_t aPos, size_t aLen) const
-size_t find(const char* aCstr, size_t aPos=0) const
-size_t find(char aChar, size_t aPos=0) const
+size_t tqfind(const char* aBuf, size_t aPos, size_t aLen) const
+size_t tqfind(const char* aCstr, size_t aPos=0) const
+size_t tqfind(char aChar, size_t aPos=0) const

Performs a forward search for a sequence of characters in the DwString object. The return value is the position of the @@ -466,11 +466,11 @@ the sequence of characters in the NUL-terminated string The fourth version searches beginning at position aPos for the character aChar.

- size_t rfind(const DwString& + size_t rtqfind(const DwString& aStr, size_t aPos=npos) const
-size_t rfind(const char* aBuf, size_t aPos, size_t aLen) const
-size_t rfind(const char* aCstr, size_t aPos=npos) const
-size_t rfind(char aChar, size_t aPos=npos) const
+size_t rtqfind(const char* aBuf, size_t aPos, size_t aLen) const
+size_t rtqfind(const char* aCstr, size_t aPos=npos) const
+size_t rtqfind(char aChar, size_t aPos=npos) const

Performs a reverse search for a sequence of characters in the DwString object. The return value is the position of the @@ -579,7 +579,7 @@ The third version searches for any character not in the NUL-terminated string DwString substr(size_t aPos=0, size_t aLen=npos) const

-Returns a string that tqcontains at most aLen characters from +Returns a string that contains at most aLen characters from the DwString object beginning at position aPos. The returned substring will not contain more characters than what are available in the superstring DwString object. -- cgit v1.2.1