diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 36a36a5c1015aa0d03f4515c401e907ddb9d6291 (patch) | |
tree | 0212ba6d2c749043134005a41f2bd0379619d40f /libkmime/kmime_headers.h | |
parent | 4c6f8d69e2d1501837affb472c4eb8fec4462240 (diff) | |
download | tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.tar.gz tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkmime/kmime_headers.h')
-rw-r--r-- | libkmime/kmime_headers.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libkmime/kmime_headers.h b/libkmime/kmime_headers.h index 69f139a57..458258640 100644 --- a/libkmime/kmime_headers.h +++ b/libkmime/kmime_headers.h @@ -116,16 +116,16 @@ class KDE_EXPORT Base { /** Create an empty header. */ Base() : e_ncCS(0), p_arent(0) {} - /** Create an empty header with a tqparent-content. */ - Base(KMime::Content *tqparent) : e_ncCS(0), p_arent(tqparent) {} + /** Create an empty header with a parent-content. */ + Base(KMime::Content *parent) : e_ncCS(0), p_arent(parent) {} /** Destructor */ virtual ~Base() {} - /** Return the tqparent of this header. */ - KMime::Content* tqparent() { return p_arent; } + /** Return the parent of this header. */ + KMime::Content* parent() { return p_arent; } - /** Set the tqparent for this header. */ + /** Set the parent for this header. */ void setParent(KMime::Content *p) { p_arent=p; } /** Parse the given string. Take care of RFC2047-encoded |