summaryrefslogtreecommitdiffstats
path: root/kmail/bodypartformatterfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/bodypartformatterfactory.cpp')
-rw-r--r--kmail/bodypartformatterfactory.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kmail/bodypartformatterfactory.cpp b/kmail/bodypartformatterfactory.cpp
index 680d0c48..f11690d5 100644
--- a/kmail/bodypartformatterfactory.cpp
+++ b/kmail/bodypartformatterfactory.cpp
@@ -21,11 +21,11 @@
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
- the Qt library by Trolltech AS, Norway (or with modified versions
- of Qt that use the same license as Qt), and distribute linked
+ the TQt library by Trolltech AS, Norway (or with modified versions
+ of TQt that use the same license as TQt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
- Qt. If you modify this file, you may extend this exception to
+ TQt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
@@ -44,7 +44,7 @@ using namespace KMail::BodyPartFormatterFactoryPrivate;
// KDE
#include <kdebug.h>
-// Qt
+// TQt
#include <tqstring.h>
#include <tqcstring.h>
#include <tqstringlist.h>
@@ -83,7 +83,7 @@ static void insertBodyPartFormatter( const char * type, const char * subtype,
if ( !type || !*type || !subtype || !*subtype || !formatter || !all )
return;
- TypeRegistry::iterator type_it = all->find( type );
+ TypeRegistry::iterator type_it = all->tqfind( type );
if ( type_it == all->end() ) {
kdDebug( 5006 ) << "BodyPartFormatterFactory: instantiating new Subtype Registry for \""
<< type << "\"" << endl;
@@ -92,7 +92,7 @@ static void insertBodyPartFormatter( const char * type, const char * subtype,
}
SubtypeRegistry & subtype_reg = type_it->second;
- SubtypeRegistry::iterator subtype_it = subtype_reg.find( subtype );
+ SubtypeRegistry::iterator subtype_it = subtype_reg.tqfind( subtype );
if ( subtype_it != subtype_reg.end() ) {
kdDebug( 5006 ) << "BodyPartFormatterFactory: overwriting previously registered formatter for \""
<< type << "/" << subtype << "\"" << endl;
@@ -159,9 +159,9 @@ const KMail::Interface::BodyPartFormatter * KMail::BodyPartFormatterFactory::cre
if ( all->empty() )
return 0;
- TypeRegistry::const_iterator type_it = all->find( type );
+ TypeRegistry::const_iterator type_it = all->tqfind( type );
if ( type_it == all->end() )
- type_it = all->find( "*" );
+ type_it = all->tqfind( "*" );
if ( type_it == all->end() )
return 0;
@@ -169,9 +169,9 @@ const KMail::Interface::BodyPartFormatter * KMail::BodyPartFormatterFactory::cre
if ( subtype_reg.empty() )
return 0;
- SubtypeRegistry::const_iterator subtype_it = subtype_reg.find( subtype );
+ SubtypeRegistry::const_iterator subtype_it = subtype_reg.tqfind( subtype );
if ( subtype_it == subtype_reg.end() )
- subtype_it = subtype_reg.find( "*" );
+ subtype_it = subtype_reg.tqfind( "*" );
if ( subtype_it == subtype_reg.end() )
return 0;