diff options
Diffstat (limited to 'kontact/plugins/kmail/kcmkmailsummary.cpp')
-rw-r--r-- | kontact/plugins/kmail/kcmkmailsummary.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kontact/plugins/kmail/kcmkmailsummary.cpp b/kontact/plugins/kmail/kcmkmailsummary.cpp index e27254e33..ae7765553 100644 --- a/kontact/plugins/kmail/kcmkmailsummary.cpp +++ b/kontact/plugins/kmail/kcmkmailsummary.cpp @@ -17,8 +17,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #include <tqcheckbox.h> @@ -41,14 +41,14 @@ extern "C" { - KDE_EXPORT KCModule *create_kmailsummary( TQWidget *parent, const char * ) + KDE_EXPORT KCModule *create_kmailsummary( TQWidget *tqparent, const char * ) { - return new KCMKMailSummary( parent, "kcmkmailsummary" ); + return new KCMKMailSummary( tqparent, "kcmkmailsummary" ); } } -KCMKMailSummary::KCMKMailSummary( TQWidget *parent, const char *name ) - : KCModule( parent, name ) +KCMKMailSummary::KCMKMailSummary( TQWidget *tqparent, const char *name ) + : KCModule( tqparent, name ) { initGUI(); @@ -109,14 +109,14 @@ void KCMKMailSummary::initFolders() folderRef.call( "displayName()" ).get( displayName ); } if ( (*it).tqcontains( '/' ) == 1 ) { - if ( mFolderMap.find( *it ) == mFolderMap.end() ) + if ( mFolderMap.tqfind( *it ) == mFolderMap.end() ) mFolderMap.insert( *it, new TQListViewItem( mFolderView, displayName ) ); } else { const int pos = (*it).findRev( '/' ); - const TQString parentFolder = (*it).left( pos ); + const TQString tqparentFolder = (*it).left( pos ); mFolderMap.insert( *it, - new TQCheckListItem( mFolderMap[ parentFolder ], + new TQCheckListItem( mFolderMap[ tqparentFolder ], displayName, TQCheckListItem::CheckBox ) ); } |