summaryrefslogtreecommitdiffstats
path: root/src/kexportdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-29 16:32:00 +0900
committerMichele Calgaro <[email protected]>2023-12-29 16:32:00 +0900
commit07106c0a34f021d33eecae6571f0a67c990081bd (patch)
tree2a80dba861658d2d64b12c24318c43787c09b721 /src/kexportdialog.cpp
parent113054cd5b4ce6ed21917e36f30d1fdcf780c525 (diff)
downloadkpicosim-07106c0a34f021d33eecae6571f0a67c990081bd.tar.gz
kpicosim-07106c0a34f021d33eecae6571f0a67c990081bd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kexportdialog.cpp')
-rw-r--r--src/kexportdialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kexportdialog.cpp b/src/kexportdialog.cpp
index a53922d..c636c72 100644
--- a/src/kexportdialog.cpp
+++ b/src/kexportdialog.cpp
@@ -56,25 +56,25 @@ KExportDialog::KExportDialog( TQWidget *parent, const char *name ) : TQDialog(pa
button->setText( "OK" ) ;
button->setFixedSize( 60, 25 ) ;
button->move( 100, 90 ) ;
- connect( button, TQT_SIGNAL( clicked() ), this, TQT_SLOT( btnOKClicked() ) ) ;
+ connect( button, TQ_SIGNAL( clicked() ), this, TQ_SLOT( btnOKClicked() ) ) ;
button = new TQPushButton( this ) ;
button->setText( "Cancel" ) ;
button->setFixedSize( 60, 25 ) ;
button->move( 200, 90 ) ;
- connect( button, TQT_SIGNAL( clicked() ), this, TQT_SLOT( btnCancelClicked() ) ) ;
+ connect( button, TQ_SIGNAL( clicked() ), this, TQ_SLOT( btnCancelClicked() ) ) ;
button = new TQPushButton( this ) ;
button->setText( "..." ) ;
button->setFixedSize( 25, 20 ) ;
button->move( 270, 10 ) ;
- connect( button, TQT_SIGNAL( clicked() ), this, TQT_SLOT( showFileDialog() ) ) ;
+ connect( button, TQ_SIGNAL( clicked() ), this, TQ_SLOT( showFileDialog() ) ) ;
button = new TQPushButton( this ) ;
button->setText( "..." ) ;
button->setFixedSize( 25, 20 ) ;
button->move( 270, 35 ) ;
- connect( button, TQT_SIGNAL( clicked() ), this, TQT_SLOT( showDirDialog() ) ) ;
+ connect( button, TQ_SIGNAL( clicked() ), this, TQ_SLOT( showDirDialog() ) ) ;
setFixedSize( 340, 130 ) ;
setCaption( "Export to VHDL" ) ;