diff options
Diffstat (limited to 'src/kjtagdialog.cpp')
-rw-r--r-- | src/kjtagdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kjtagdialog.cpp b/src/kjtagdialog.cpp index f75910d..ba05c12 100644 --- a/src/kjtagdialog.cpp +++ b/src/kjtagdialog.cpp @@ -35,13 +35,13 @@ KJTAGDialog::KJTAGDialog( TQWidget *parent ) m_selectFileBtn->setFixedSize( 30, 25 ) ; m_selectFileBtn->move( 205, 15 ) ; m_selectFileBtn->setPixmap( TDEGlobal::iconLoader()->loadIcon( "document-open", TDEIcon::Small ) ) ; - connect( m_selectFileBtn, TQT_SIGNAL( clicked() ), this, TQT_SLOT( selectFileName() ) ) ; + connect( m_selectFileBtn, TQ_SIGNAL( clicked() ), this, TQ_SLOT( selectFileName() ) ) ; m_configureBtn = new TQPushButton( "Configure", m_groupConfigure ) ; m_configureBtn->setFixedSize( 60, 25 ) ; m_configureBtn->move( 240, 15 ) ; - connect( m_configureBtn, TQT_SIGNAL( clicked() ), this, TQT_SLOT( configure() ) ) ; + connect( m_configureBtn, TQ_SIGNAL( clicked() ), this, TQ_SLOT( configure() ) ) ; m_bitFileLabel = new TQLabel( "Bit file", m_groupConfigure ) ; m_bitFileLabel->setFixedSize( 50, 25 ) ; @@ -61,8 +61,8 @@ KJTAGDialog::KJTAGDialog( TQWidget *parent ) m_debug->move( 10, 60 ) ; m_programmer = new JTAGProgrammer( this ) ; - connect( m_programmer, TQT_SIGNAL( progress(int) ), this, TQT_SLOT( progress(int) ) ) ; - connect( m_programmer, TQT_SIGNAL( message(const char*) ), this, TQT_SLOT( addMessage(const char*) ) ) ; + connect( m_programmer, TQ_SIGNAL( progress(int) ), this, TQ_SLOT( progress(int) ) ) ; + connect( m_programmer, TQ_SIGNAL( message(const char*) ), this, TQ_SLOT( addMessage(const char*) ) ) ; m_debug->insert( "This option is still very experimental!!\n" "The code is tested with the Spartan-3 Development Board.\n" |