diff options
Diffstat (limited to 'kexi/plugins/importexport/csv/kexicsvimportdialog.cpp')
-rw-r--r-- | kexi/plugins/importexport/csv/kexicsvimportdialog.cpp | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/kexi/plugins/importexport/csv/kexicsvimportdialog.cpp b/kexi/plugins/importexport/csv/kexicsvimportdialog.cpp index 61f86ec2b..26efa6029 100644 --- a/kexi/plugins/importexport/csv/kexicsvimportdialog.cpp +++ b/kexi/plugins/importexport/csv/kexicsvimportdialog.cpp @@ -235,7 +235,7 @@ KexiCSVImportDialog::KexiCSVImportDialog( Mode mode, KexiMainWindow* mainWin, m_primaryKeyField = new TQCheckBox( i18n( "Primary key" ), page, "m_primaryKeyField" ); glyr->addWidget( m_primaryKeyField, 2, 1 ); - connect(m_primaryKeyField, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotPrimaryKeyFieldToggled(bool))); + connect(m_primaryKeyField, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotPrimaryKeyFieldToggled(bool))); m_comboQuote = new KexiCSVTextQuoteComboBox( page ); glyr->addWidget( m_comboQuote, 1, 2 ); @@ -364,24 +364,24 @@ if ( m_mode == Clipboard ) m_table->setSelectionMode(TQTable::NoSelection); - connect(m_formatCombo, TQT_SIGNAL(activated(int)), - this, TQT_SLOT(formatChanged(int))); - connect(m_delimiterWidget, TQT_SIGNAL(delimiterChanged(const TQString&)), - this, TQT_SLOT(delimiterChanged(const TQString&))); - connect(m_startAtLineSpinBox, TQT_SIGNAL(valueChanged ( int )), - this, TQT_SLOT(startlineSelected(int))); - connect(m_comboQuote, TQT_SIGNAL(activated(int)), - this, TQT_SLOT(textquoteSelected(int))); - connect(m_table, TQT_SIGNAL(currentChanged(int, int)), - this, TQT_SLOT(currentCellChanged(int, int))); - connect(m_table, TQT_SIGNAL(valueChanged(int,int)), - this, TQT_SLOT(cellValueChanged(int,int))); - connect(m_ignoreDuplicates, TQT_SIGNAL(stateChanged(int)), - this, TQT_SLOT(ignoreDuplicatesChanged(int))); - connect(m_1stRowForFieldNames, TQT_SIGNAL(stateChanged(int)), - this, TQT_SLOT(slot1stRowForFieldNamesChanged(int))); - - connect(this, TQT_SIGNAL(user1Clicked()), this, TQT_SLOT(optionsButtonClicked())); + connect(m_formatCombo, TQ_SIGNAL(activated(int)), + this, TQ_SLOT(formatChanged(int))); + connect(m_delimiterWidget, TQ_SIGNAL(delimiterChanged(const TQString&)), + this, TQ_SLOT(delimiterChanged(const TQString&))); + connect(m_startAtLineSpinBox, TQ_SIGNAL(valueChanged ( int )), + this, TQ_SLOT(startlineSelected(int))); + connect(m_comboQuote, TQ_SIGNAL(activated(int)), + this, TQ_SLOT(textquoteSelected(int))); + connect(m_table, TQ_SIGNAL(currentChanged(int, int)), + this, TQ_SLOT(currentCellChanged(int, int))); + connect(m_table, TQ_SIGNAL(valueChanged(int,int)), + this, TQ_SLOT(cellValueChanged(int,int))); + connect(m_ignoreDuplicates, TQ_SIGNAL(stateChanged(int)), + this, TQ_SLOT(ignoreDuplicatesChanged(int))); + connect(m_1stRowForFieldNames, TQ_SIGNAL(stateChanged(int)), + this, TQ_SLOT(slot1stRowForFieldNamesChanged(int))); + + connect(this, TQ_SIGNAL(user1Clicked()), this, TQ_SLOT(optionsButtonClicked())); installRecursiveEventFilter(this, this); @@ -406,7 +406,7 @@ void KexiCSVImportDialog::initLater() if (m_dialogCancelled) { // m_loadingProgressDlg->hide(); // m_loadingProgressDlg->close(); - TQTimer::singleShot(0, this, TQT_SLOT(reject())); + TQTimer::singleShot(0, this, TQ_SLOT(reject())); return; } @@ -1270,7 +1270,7 @@ void KexiCSVImportDialog::textquoteSelected(int) void KexiCSVImportDialog::fillTableLater() { m_table->setNumRows( 0 ); - TQTimer::singleShot(10, this, TQT_SLOT(fillTable())); + TQTimer::singleShot(10, this, TQ_SLOT(fillTable())); } void KexiCSVImportDialog::startlineSelected(int startline) |