diff options
Diffstat (limited to 'kmymoney2/dialogs/kimportdlg.cpp')
-rw-r--r-- | kmymoney2/dialogs/kimportdlg.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmymoney2/dialogs/kimportdlg.cpp b/kmymoney2/dialogs/kimportdlg.cpp index 503f987..38ddad8 100644 --- a/kmymoney2/dialogs/kimportdlg.cpp +++ b/kmymoney2/dialogs/kimportdlg.cpp @@ -86,14 +86,14 @@ KImportDlg::KImportDlg(TQWidget *parent, const char * name) m_profileEditorButton->setGuiItem(newButtenItem); // connect the buttons to their functionality - connect(m_qbuttonBrowse, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotBrowse() ) ); - connect(m_qbuttonOk, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotOkClicked())); - connect(m_qbuttonCancel, TQT_SIGNAL(clicked()), this, TQT_SLOT(reject())); - connect(m_profileEditorButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotNewProfile())); + connect(m_qbuttonBrowse, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotBrowse() ) ); + connect(m_qbuttonOk, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotOkClicked())); + connect(m_qbuttonCancel, TQ_SIGNAL(clicked()), this, TQ_SLOT(reject())); + connect(m_profileEditorButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotNewProfile())); // connect the change signals to the check slot and perform initial check - connect(m_qlineeditFile, TQT_SIGNAL(textChanged(const TQString&)), this, - TQT_SLOT(slotFileTextChanged(const TQString&))); + connect(m_qlineeditFile, TQ_SIGNAL(textChanged(const TQString&)), this, + TQ_SLOT(slotFileTextChanged(const TQString&))); // setup button enable status slotFileTextChanged(m_qlineeditFile->text()); |