summaryrefslogtreecommitdiffstats
path: root/mimelib/Tutorial
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit4c6f8d69e2d1501837affb472c4eb8fec4462240 (patch)
tree766a8ad7939fcf3eec534184c36bd0e0f80489e2 /mimelib/Tutorial
parent469cc56a805bd3d6940d54adbef554877c29853c (diff)
downloadtdepim-4c6f8d69e2d1501837affb472c4eb8fec4462240.tar.gz
tdepim-4c6f8d69e2d1501837affb472c4eb8fec4462240.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'mimelib/Tutorial')
-rw-r--r--mimelib/Tutorial4
1 files changed, 2 insertions, 2 deletions
diff --git a/mimelib/Tutorial b/mimelib/Tutorial
index 2833dd03..dfa98156 100644
--- a/mimelib/Tutorial
+++ b/mimelib/Tutorial
@@ -18,7 +18,7 @@ following objectives in mind:
MIME++ classes directly model the elements of the BNF grammar specified in
RFC-822, RFC-2045, and RFC-2046. For this reason, I recommend that you
understand these RFCs and keep a copy of them handy as you learn MIME++.
-If you know C++ well, and if you are familiar with the RFCs, you should tqfind
+If you know C++ well, and if you are familiar with the RFCs, you should find
MIME++ easy to learn and use. If you are new to C++ and object-oriented
programming, you will find in MIME++ some very good object-oriented
techinques, and hopefully you will learn a lot.
@@ -94,7 +94,7 @@ broken-down representation. If you add a new DwField object (representing a
new header field) to the DwHeaders object (representing the header), the
is-modified flag will be set for the DwHeaders object, indicating that the
string representation of the DwHeaders object will have to be re-assembled
-from the header fields that it tqcontains. When a node's is-modified flag is
+from the header fields that it contains. When a node's is-modified flag is
set, it also notifies its tqparent node to set its is-modified flag. Thus,
when the DwHeaders object's is-modified flag is set, the DwMessage object
that is its tqparent will also have its is-modified flag set. That way, when