diff options
Diffstat (limited to 'korn/maildlg.cpp')
-rw-r--r-- | korn/maildlg.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/korn/maildlg.cpp b/korn/maildlg.cpp index d912c447a..71db3da39 100644 --- a/korn/maildlg.cpp +++ b/korn/maildlg.cpp @@ -17,7 +17,7 @@ KornMailDlg::KornMailDlg( TQWidget *parent ) _editCtrl = new KEdit(page); topLayout->addWidget(_editCtrl, 10); _editCtrl->setReadOnly(true); - connect(this, TQT_SIGNAL(user1Clicked()), this, TQT_SLOT(showFullMessage())); + connect(this, TQ_SIGNAL(user1Clicked()), this, TQ_SLOT(showFullMessage())); setInitialSize(TQSize(TQApplication::desktop()->width()*9/10, TQApplication::desktop()->height()/2)); } @@ -46,14 +46,14 @@ void KornMailDlg::showFullMessage() tqApp->processEvents(); // connect the mailbox with the progress dialog in case it supports progress bars - connect(_mailDrop, TQT_SIGNAL(readMailTotalSteps(int)), _progress, TQT_SLOT(setTotalSteps(int))); - connect(_mailDrop, TQT_SIGNAL(readMailProgress(int)), _progress, TQT_SLOT(setProgress(int))); + connect(_mailDrop, TQ_SIGNAL(readMailTotalSteps(int)), _progress, TQ_SLOT(setTotalSteps(int))); + connect(_mailDrop, TQ_SIGNAL(readMailProgress(int)), _progress, TQ_SLOT(setProgress(int))); tqApp->processEvents(); // connect the mailbox's cancel button - connect(_progress, TQT_SIGNAL(canceled()), this, TQT_SLOT(loadMailCanceled())); + connect(_progress, TQ_SIGNAL(canceled()), this, TQ_SLOT(loadMailCanceled())); - connect(_mailDrop, TQT_SIGNAL(readMailReady(TQString*)), this, TQT_SLOT(readMailReady(TQString*))); + connect(_mailDrop, TQ_SIGNAL(readMailReady(TQString*)), this, TQ_SLOT(readMailReady(TQString*))); // now load the mail fully if( _mailDrop->synchrone() ) @@ -100,7 +100,7 @@ void KornMailDlg::deleteProgress() _progress->setProgress(_progress->totalSteps()); _progress->hide(); - disconnect( _mailDrop, TQT_SIGNAL(readMailReady(TQString*)), this, TQT_SLOT(readMailReady(TQString*))); + disconnect( _mailDrop, TQ_SIGNAL(readMailReady(TQString*)), this, TQ_SLOT(readMailReady(TQString*))); delete _progress; _progress = 0; |