summaryrefslogtreecommitdiffstats
path: root/src/mixminion.ui.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-28 21:16:10 +0900
committerMichele Calgaro <[email protected]>2024-01-01 20:25:20 +0900
commit01627fbd795c62fb7f6e8f0bce8ae6cf3dc5b6de (patch)
tree6fc3295d8f5cf222b37b0721ed00b1a1f514cc96 /src/mixminion.ui.h
parent166571710ff186cff2b09a83336f6aadc2c8340a (diff)
downloadtork-01627fbd795c62fb7f6e8f0bce8ae6cf3dc5b6de.tar.gz
tork-01627fbd795c62fb7f6e8f0bce8ae6cf3dc5b6de.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit a3180d7d508dc046a75a887d43a7e6b2d5f02468)
Diffstat (limited to 'src/mixminion.ui.h')
-rw-r--r--src/mixminion.ui.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mixminion.ui.h b/src/mixminion.ui.h
index 5b78339..00d60d2 100644
--- a/src/mixminion.ui.h
+++ b/src/mixminion.ui.h
@@ -63,10 +63,10 @@ void MixMinionClient::send_clicked()
*mixminionproc << "printf '" << messageBody->text() <<"' | mixminion send -t " << toAddress->text()
<< " --subject '" << subject->text() << "'";
- connect( mixminionproc, SIGNAL(processExited(TDEProcess *)),
- SLOT(mixminionprocExited(TDEProcess *)) );
- connect( mixminionproc, SIGNAL(readReady(KProcIO *)),
- SLOT(receivedMixminionOutput(KProcIO *)) );
+ connect( mixminionproc, TQ_SIGNAL(processExited(TDEProcess *)),
+ TQ_SLOT(mixminionprocExited(TDEProcess *)) );
+ connect( mixminionproc, TQ_SIGNAL(readReady(KProcIO *)),
+ TQ_SLOT(receivedMixminionOutput(KProcIO *)) );
progressDialog = new KProgressDialog( this, "progress_dialog", TQString::null, "Sending Anonymous Mail Message..", false );
@@ -78,7 +78,7 @@ void MixMinionClient::send_clicked()
progressDialog->setMinimumDuration( 500 );
progressDialog->show();
TQTimer* timer = new TQTimer( this );
- connect( timer, SIGNAL( timeout() ), this, SLOT( slotProg() ) );
+ connect( timer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( slotProg() ) );
timer->start( 200, FALSE );