diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-14 13:10:18 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-20 19:37:16 +0900 |
commit | d3656a49e67074e23e8df5daef0f585199b0a8da (patch) | |
tree | a4f8ca60d997f3342a31a8901e11cdb89ab5f270 /kbugbuster/gui/msginputdialog.cpp | |
parent | 34281174eaef4065e90b49b327f3763b04dd5854 (diff) | |
download | tdesdk-d3656a49e67074e23e8df5daef0f585199b0a8da.tar.gz tdesdk-d3656a49e67074e23e8df5daef0f585199b0a8da.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit b0c86264e0cd10a0d3a47de3b05be453d9417bcd)
Diffstat (limited to 'kbugbuster/gui/msginputdialog.cpp')
-rw-r--r-- | kbugbuster/gui/msginputdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kbugbuster/gui/msginputdialog.cpp b/kbugbuster/gui/msginputdialog.cpp index a1e10a38..a16564e4 100644 --- a/kbugbuster/gui/msginputdialog.cpp +++ b/kbugbuster/gui/msginputdialog.cpp @@ -94,10 +94,10 @@ MsgInputDialog::MsgInputDialog(MsgInputDialog::MessageType type, const Bug &bug, updatePresets(); l->setBuddy( mPresets ); - connect( mPresets, TQT_SIGNAL( executed( TQListBoxItem* ) ), - TQT_SLOT( slotPresetSelected( TQListBoxItem * ) ) ); - connect( this, TQT_SIGNAL( user2Clicked() ), TQT_SLOT( editPresets() ) ); - connect( this, TQT_SIGNAL( user1Clicked() ), TQT_SLOT( clearMessage() ) ); + connect( mPresets, TQ_SIGNAL( executed( TQListBoxItem* ) ), + TQ_SLOT( slotPresetSelected( TQListBoxItem * ) ) ); + connect( this, TQ_SIGNAL( user2Clicked() ), TQ_SLOT( editPresets() ) ); + connect( this, TQ_SIGNAL( user1Clicked() ), TQ_SLOT( clearMessage() ) ); mMessageEdit->setFocus(); if ( !quotedMsg.isEmpty() ) |