diff options
Diffstat (limited to 'kresources/exchange/resourceexchangeconfig.cpp')
-rw-r--r-- | kresources/exchange/resourceexchangeconfig.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kresources/exchange/resourceexchangeconfig.cpp b/kresources/exchange/resourceexchangeconfig.cpp index 5bb9677b6..5a20dba0f 100644 --- a/kresources/exchange/resourceexchangeconfig.cpp +++ b/kresources/exchange/resourceexchangeconfig.cpp @@ -33,8 +33,8 @@ using namespace KCal; -ResourceExchangeConfig::ResourceExchangeConfig( TQWidget* parent, const char* name ) - : KRES::ConfigWidget( parent, name ) +ResourceExchangeConfig::ResourceExchangeConfig( TQWidget* tqparent, const char* name ) + : KRES::ConfigWidget( tqparent, name ) { resize( 245, 115 ); TQGridLayout *mainLayout = new TQGridLayout( this, 8, 3 ); @@ -101,7 +101,7 @@ void ResourceExchangeConfig::saveSettings( KRES::Resource *resource ) ResourceExchange* res = dynamic_cast<ResourceExchange*>( resource ); if (res) { if ( mAutoMailbox->isChecked() ) { - mMailboxEdit->setText( TQString::null ); + mMailboxEdit->setText( TQString() ); slotFindClicked(); if ( mMailboxEdit->text().isNull() ) { kdWarning() << "Could not find Exchange mailbox URL, incomplete settings!" << endl; |