summaryrefslogtreecommitdiffstats
path: root/kchart/csvimportdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:30:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 12:36:03 +0900
commitc0332621bc998c9786f4841e86a62b7711fe4abf (patch)
tree38b3ab6688de7a9396a1c5993a8ec265f5f33b64 /kchart/csvimportdialog.cpp
parent6c81ff8d61ec679e735d3fbd875583b12f0ef0a5 (diff)
downloadkoffice-c0332621bc998c9786f4841e86a62b7711fe4abf.tar.gz
koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kchart/csvimportdialog.cpp')
-rw-r--r--kchart/csvimportdialog.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/kchart/csvimportdialog.cpp b/kchart/csvimportdialog.cpp
index cf13c1b5e..a728a318f 100644
--- a/kchart/csvimportdialog.cpp
+++ b/kchart/csvimportdialog.cpp
@@ -88,24 +88,24 @@ CSVImportDialog::CSVImportDialog(TQWidget* parent, TQByteArray& fileArray)
m_dialog->m_sheet->setSelectionMode( TQTable::Multi );
- connect(m_dialog->m_formatComboBox, TQT_SIGNAL(activated( const TQString& )),
- this, TQT_SLOT(formatChanged( const TQString& )));
- connect(m_dialog->m_delimiterBox, TQT_SIGNAL(clicked(int)),
- this, TQT_SLOT(delimiterClicked(int)));
- connect(m_dialog->m_delimiterEdit, TQT_SIGNAL(returnPressed()),
- this, TQT_SLOT(returnPressed()));
- connect(m_dialog->m_delimiterEdit, TQT_SIGNAL(textChanged ( const TQString & )),
- this, TQT_SLOT(formatChanged ( const TQString & ) ));
- connect(m_dialog->m_comboQuote, TQT_SIGNAL(activated(const TQString &)),
- this, TQT_SLOT(textquoteSelected(const TQString &)));
- connect(m_dialog->m_sheet, TQT_SIGNAL(currentChanged(int, int)),
- this, TQT_SLOT(currentCellChanged(int, int)));
- connect(m_dialog->m_ignoreDuplicates, TQT_SIGNAL(stateChanged(int)),
- this, TQT_SLOT(ignoreDuplicatesChanged(int)));
- connect(m_dialog->m_updateButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(updateClicked()));
- connect(m_dialog->comboBoxEncoding, TQT_SIGNAL(textChanged ( const TQString & )),
- this, TQT_SLOT(encodingChanged ( const TQString & ) ));
+ connect(m_dialog->m_formatComboBox, TQ_SIGNAL(activated( const TQString& )),
+ this, TQ_SLOT(formatChanged( const TQString& )));
+ connect(m_dialog->m_delimiterBox, TQ_SIGNAL(clicked(int)),
+ this, TQ_SLOT(delimiterClicked(int)));
+ connect(m_dialog->m_delimiterEdit, TQ_SIGNAL(returnPressed()),
+ this, TQ_SLOT(returnPressed()));
+ connect(m_dialog->m_delimiterEdit, TQ_SIGNAL(textChanged ( const TQString & )),
+ this, TQ_SLOT(formatChanged ( const TQString & ) ));
+ connect(m_dialog->m_comboQuote, TQ_SIGNAL(activated(const TQString &)),
+ this, TQ_SLOT(textquoteSelected(const TQString &)));
+ connect(m_dialog->m_sheet, TQ_SIGNAL(currentChanged(int, int)),
+ this, TQ_SLOT(currentCellChanged(int, int)));
+ connect(m_dialog->m_ignoreDuplicates, TQ_SIGNAL(stateChanged(int)),
+ this, TQ_SLOT(ignoreDuplicatesChanged(int)));
+ connect(m_dialog->m_updateButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(updateClicked()));
+ connect(m_dialog->comboBoxEncoding, TQ_SIGNAL(textChanged ( const TQString & )),
+ this, TQ_SLOT(encodingChanged ( const TQString & ) ));
}