From 4c6f8d69e2d1501837affb472c4eb8fec4462240 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: 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 --- libkmime/kmime_headers.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libkmime/kmime_headers.h') diff --git a/libkmime/kmime_headers.h b/libkmime/kmime_headers.h index 40ae18b8a..69f139a57 100644 --- a/libkmime/kmime_headers.h +++ b/libkmime/kmime_headers.h @@ -605,7 +605,7 @@ class KDE_EXPORT Subject : public Generics::GUnstructured { virtual const char* type() { return "Subject"; } bool isReply() { - return ( asUnicodeString().tqfind( TQString("Re:"), 0, false ) == 0 ); + return ( asUnicodeString().find( TQString("Re:"), 0, false ) == 0 ); } }; @@ -651,7 +651,7 @@ class KDE_EXPORT Control : public Base { virtual bool isEmpty() { return (c_trlMsg.isEmpty()); } virtual const char* type() { return "Control"; } - bool isCancel() { return (c_trlMsg.tqfind("cancel", 0, false)!=-1); } + bool isCancel() { return (c_trlMsg.find("cancel", 0, false)!=-1); } protected: TQCString c_trlMsg; @@ -708,7 +708,7 @@ class KDE_EXPORT Newsgroups : public Base { virtual const char* type() { return "Newsgroups"; } TQCString firstGroup(); - bool isCrossposted() { return ( g_roups.tqfind(',')>-1 ); } + bool isCrossposted() { return ( g_roups.find(',')>-1 ); } TQStringList getGroups(); protected: -- cgit v1.2.1