diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-13 00:46:47 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-13 00:46:47 +0000 |
commit | 67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch) | |
tree | 5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /mimelib/doc/string.html | |
parent | 2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff) | |
download | tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip |
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
Diffstat (limited to 'mimelib/doc/string.html')
-rw-r--r-- | mimelib/doc/string.html | 34 |
1 files changed, 17 insertions, 17 deletions
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 <A HREF="string.html#swap">swap</A>(DwString& aStr); const char* <A HREF="string.html#c_str">c_str</A>() const; const char* <A HREF="string.html#data">data</A>() const; - size_t <A HREF="string.html#find">find</A>(const DwString& aStr, size_t aPos=0) const; - size_t <A HREF="string.html#find">find</A>(const char* aBuf, size_t aPos, size_t aLen) const; - size_t <A HREF="string.html#find">find</A>(const char* aCstr, size_t aPos=0) const; - size_t <A HREF="string.html#find">find</A>(char aChar, size_t aPos=0) const; - size_t <A HREF="string.html#rfind">rfind</A>(const DwString& aStr, size_t aPos=npos) const; - size_t <A HREF="string.html#rfind">rfind</A>(const char* aBuf, size_t aPos, size_t aLen) const; - size_t <A HREF="string.html#rfind">rfind</A>(const char* aCstr, size_t aPos=npos) const; - size_t <A HREF="string.html#rfind">rfind</A>(char aChar, size_t aPos=npos) const; + size_t <A HREF="string.html#tqfind">tqfind</A>(const DwString& aStr, size_t aPos=0) const; + size_t <A HREF="string.html#tqfind">tqfind</A>(const char* aBuf, size_t aPos, size_t aLen) const; + size_t <A HREF="string.html#tqfind">tqfind</A>(const char* aCstr, size_t aPos=0) const; + size_t <A HREF="string.html#tqfind">tqfind</A>(char aChar, size_t aPos=0) const; + size_t <A HREF="string.html#rtqfind">rtqfind</A>(const DwString& aStr, size_t aPos=npos) const; + size_t <A HREF="string.html#rtqfind">rtqfind</A>(const char* aBuf, size_t aPos, size_t aLen) const; + size_t <A HREF="string.html#rtqfind">rtqfind</A>(const char* aCstr, size_t aPos=npos) const; + size_t <A HREF="string.html#rtqfind">rtqfind</A>(char aChar, size_t aPos=npos) const; size_t <A HREF="string.html#find_first_of">find_first_of</A>(const DwString& aStr, size_t aPos=0) const; size_t <A HREF="string.html#find_first_of">find_first_of</A>(const char* aBuf, size_t aPos, size_t aLen) const; size_t <A HREF="string.html#find_first_of">find_first_of</A>(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 <B><TT>c_str()</TT></B>. <P> -<FONT COLOR="teal"><B> size_t <A NAME="find">find</A>(const DwString& +<FONT COLOR="teal"><B> size_t <A NAME="tqfind">tqfind</A>(const DwString& aStr, size_t aPos=0) const <BR> -size_t find(const char* aBuf, size_t aPos, size_t aLen) const <BR> -size_t find(const char* aCstr, size_t aPos=0) const <BR> -size_t find(char aChar, size_t aPos=0) const </B></FONT> +size_t tqfind(const char* aBuf, size_t aPos, size_t aLen) const <BR> +size_t tqfind(const char* aCstr, size_t aPos=0) const <BR> +size_t tqfind(char aChar, size_t aPos=0) const </B></FONT> <P> Performs a forward search for a sequence of characters in the <B><TT>DwString</TT></B> 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 <B><TT>aPos</TT></B> for the character <B><TT>aChar</TT></B>. <P> -<FONT COLOR="teal"><B> size_t <A NAME="rfind">rfind</A>(const DwString& +<FONT COLOR="teal"><B> size_t <A NAME="rtqfind">rtqfind</A>(const DwString& aStr, size_t aPos=npos) const <BR> -size_t rfind(const char* aBuf, size_t aPos, size_t aLen) const <BR> -size_t rfind(const char* aCstr, size_t aPos=npos) const <BR> -size_t rfind(char aChar, size_t aPos=npos) const </B></FONT> +size_t rtqfind(const char* aBuf, size_t aPos, size_t aLen) const <BR> +size_t rtqfind(const char* aCstr, size_t aPos=npos) const <BR> +size_t rtqfind(char aChar, size_t aPos=npos) const </B></FONT> <P> Performs a reverse search for a sequence of characters in the <B><TT>DwString</TT></B> 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 <FONT COLOR="teal"><B> DwString <A NAME="substr">substr</A>(size_t aPos=0, size_t aLen=npos) const </B></FONT> <P> -Returns a string that tqcontains at most <B><TT>aLen</TT></B> characters from +Returns a string that contains at most <B><TT>aLen</TT></B> characters from the <B><TT>DwString</TT></B> object beginning at position <B><TT>aPos</TT></B>. The returned substring will not contain more characters than what are available in the superstring <B><TT>DwString</TT></B> object. |