diff options
Diffstat (limited to 'kontact/plugins/summary/kcmkontactsummary.cpp')
-rw-r--r-- | kontact/plugins/summary/kcmkontactsummary.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kontact/plugins/summary/kcmkontactsummary.cpp b/kontact/plugins/summary/kcmkontactsummary.cpp index 22d27f47d..ba78c226a 100644 --- a/kontact/plugins/summary/kcmkontactsummary.cpp +++ b/kontact/plugins/summary/kcmkontactsummary.cpp @@ -18,8 +18,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 <kaboutdata.h> @@ -43,16 +43,16 @@ extern "C" { - KDE_EXPORT KCModule *create_kontactsummary( TQWidget *parent, const char * ) { - return new KCMKontactSummary( parent, "kcmkontactsummary" ); + KDE_EXPORT KCModule *create_kontactsummary( TQWidget *tqparent, const char * ) { + return new KCMKontactSummary( tqparent, "kcmkontactsummary" ); } } -class PluginItem : public QCheckListItem +class PluginItem : public TQCheckListItem { public: - PluginItem( KPluginInfo *info, KListView *parent ) - : TQCheckListItem( parent, TQString::null, TQCheckListItem::CheckBox ), + PluginItem( KPluginInfo *info, KListView *tqparent ) + : TQCheckListItem( tqparent, TQString(), TQCheckListItem::CheckBox ), mInfo( info ) { TQPixmap pm = KGlobal::iconLoader()->loadIcon( mInfo->icon(), KIcon::Small ); @@ -71,15 +71,15 @@ class PluginItem : public QCheckListItem else if ( column == 1 ) return mInfo->comment(); else - return TQString::null; + return TQString(); } private: KPluginInfo *mInfo; }; -PluginView::PluginView( TQWidget *parent, const char *name ) - : KListView( parent, name ) +PluginView::PluginView( TQWidget *tqparent, const char *name ) + : KListView( tqparent, name ) { addColumn( i18n( "Name" ) ); setAllColumnsShowFocus( true ); @@ -90,8 +90,8 @@ PluginView::~PluginView() { } -KCMKontactSummary::KCMKontactSummary( TQWidget *parent, const char *name ) - : KCModule( parent, name ) +KCMKontactSummary::KCMKontactSummary( TQWidget *tqparent, const char *name ) + : KCModule( tqparent, name ) { TQVBoxLayout *tqlayout = new TQVBoxLayout( this, 0, KDialog::spacingHint() ); @@ -157,7 +157,7 @@ void KCMKontactSummary::load() if ( var.toBool() == true ) { PluginItem *item = new PluginItem( *it, mPluginView ); - if ( activeSummaries.find( (*it)->pluginName() ) != activeSummaries.end() ) + if ( activeSummaries.tqfind( (*it)->pluginName() ) != activeSummaries.end() ) item->setOn( true ); } } |