diff options
Diffstat (limited to 'knode/knconfigwidgets.cpp')
-rw-r--r-- | knode/knconfigwidgets.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/knode/knconfigwidgets.cpp b/knode/knconfigwidgets.cpp index b34d76381..af92a8d76 100644 --- a/knode/knconfigwidgets.cpp +++ b/knode/knconfigwidgets.cpp @@ -51,7 +51,7 @@ KNConfig::IdentityWidget::IdentityWidget( Identity *d, TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), d_ata( d ) { TQString msg; @@ -280,7 +280,7 @@ void KNConfig::IdentityWidget::slotSignatureEdit() //BEGIN: NNTP account configuration widgets ---------------------------------- KNConfig::NntpAccountListWidget::NntpAccountListWidget(TQWidget *p, const char *n) : - KCModule( p, n ), + TDECModule( p, n ), a_ccManager( knGlobals.accountManager() ) { p_ixmap = SmallIcon("server"); @@ -685,7 +685,7 @@ void KNConfig::SmtpAccountWidget::save() if ( mEncTLS->isChecked() ) mAccount->setEncryption( KNServerInfo::TLS ); - KConfig *conf = knGlobals.config(); + TDEConfig *conf = knGlobals.config(); conf->setGroup("MAILSERVER"); mAccount->saveConf( conf ); } @@ -813,7 +813,7 @@ int KNConfig::AppearanceWidget::FontListItem::width(const TQListBox *lb ) const KNConfig::AppearanceWidget::AppearanceWidget( TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), d_ata( knGlobals.configManager()->appearance() ) { TQGridLayout *topL=new TQGridLayout(this, 8,2, 5,5); @@ -992,7 +992,7 @@ void KNConfig::AppearanceWidget::slotFontSelectionChanged() KNConfig::ReadNewsGeneralWidget::ReadNewsGeneralWidget( ReadNewsGeneral *d, TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), d_ata( d ) { TQGroupBox *hgb=new TQGroupBox(i18n("Article Handling"), this); @@ -1123,7 +1123,7 @@ void KNConfig::ReadNewsGeneralWidget::save() KNConfig::ReadNewsNavigationWidget::ReadNewsNavigationWidget( ReadNewsNavigation *d, TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), d_ata( d ) { TQVBoxLayout *topL=new TQVBoxLayout(this, 5); @@ -1207,7 +1207,7 @@ void KNConfig::ReadNewsNavigationWidget::save() KNConfig::ReadNewsViewerWidget::ReadNewsViewerWidget( ReadNewsViewer *d, TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), d_ata( d ) { TQGroupBox *appgb=new TQGroupBox(i18n("Appearance"), this); @@ -1303,7 +1303,7 @@ void KNConfig::ReadNewsViewerWidget::save() KNConfig::DisplayedHeadersWidget::DisplayedHeadersWidget( DisplayedHeaders *d, TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), s_ave( false ), d_ata( d ) { @@ -1597,7 +1597,7 @@ void KNConfig::DisplayedHeaderConfDialog::slotNameChanged(const TQString& str) KNConfig::ScoringWidget::ScoringWidget( Scoring *d, TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), d_ata( d ) { TQGridLayout *topL = new TQGridLayout(this,4,2, 5,5); @@ -1648,7 +1648,7 @@ void KNConfig::ScoringWidget::save() KNConfig::FilterListWidget::FilterListWidget( TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), f_ilManager( knGlobals.filterManager() ) { TQGridLayout *topL=new TQGridLayout(this, 6,2, 5,5); @@ -1930,7 +1930,7 @@ void KNConfig::FilterListWidget::slotSelectionChangedMenu() KNConfig::PostNewsTechnicalWidget::PostNewsTechnicalWidget( PostNewsTechnical *d, TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), d_ata( d ) { TQVBoxLayout *topL=new TQVBoxLayout(this, 5); @@ -2166,7 +2166,7 @@ TQString KNConfig::XHeaderConfDialog::result() KNConfig::PostNewsComposerWidget::PostNewsComposerWidget( PostNewsComposer *d, TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), d_ata( d ) { TQVBoxLayout *topL=new TQVBoxLayout(this, 5); @@ -2304,7 +2304,7 @@ void KNConfig::PostNewsComposerWidget::slotChooseEditor() KNConfig::PostNewsSpellingWidget::PostNewsSpellingWidget( TQWidget *p, const char *n ) : - KCModule( p, n ) + TDECModule( p, n ) { TQVBoxLayout *topL=new TQVBoxLayout(this, 5); @@ -2330,7 +2330,7 @@ void KNConfig::PostNewsSpellingWidget::save() //============================================================================================================== KNConfig::PrivacyWidget::PrivacyWidget(TQWidget *p, const char *n) : - KCModule( p, n ) + TDECModule( p, n ) { TQBoxLayout *topLayout = new TQVBoxLayout(this, 5); c_onf = new Kpgp::Config(this,"knode pgp config",false); @@ -2469,7 +2469,7 @@ void KNConfig::GroupCleanupWidget::slotDefaultToggled( bool state ) KNConfig::CleanupWidget::CleanupWidget( TQWidget *p, const char *n ) : - KCModule( p, n ), + TDECModule( p, n ), d_ata( knGlobals.configManager()->cleanup() ) { TQVBoxLayout *topL=new TQVBoxLayout(this, 5); @@ -2552,7 +2552,7 @@ void KNConfig::CleanupWidget::slotFolderDaysChanged(int value) /* KNConfig::CacheWidget::CacheWidget(Cache *d, TQWidget *p, const char *n) - : KCModule p, n), d_ata(d) + : TDECModule p, n), d_ata(d) { TQVBoxLayout *topL=new TQVBoxLayout(this, 5); |