diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:48:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:48:13 +0900 |
commit | 0075327cfd432d756fff5de46626067a3856948e (patch) | |
tree | 7fbc9804960dc6ef1aa99054967459f4d9a5f464 /src/qalculateimportcsvdialog.cpp | |
parent | 8373cb43a7a73d1348c583c39d63c9e3aa0a4a42 (diff) | |
download | qalculate-tde-0075327cfd432d756fff5de46626067a3856948e.tar.gz qalculate-tde-0075327cfd432d756fff5de46626067a3856948e.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/qalculateimportcsvdialog.cpp')
-rw-r--r-- | src/qalculateimportcsvdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qalculateimportcsvdialog.cpp b/src/qalculateimportcsvdialog.cpp index 251adc9..a05415f 100644 --- a/src/qalculateimportcsvdialog.cpp +++ b/src/qalculateimportcsvdialog.cpp @@ -92,8 +92,8 @@ QalculateImportCSVDialog::QalculateImportCSVDialog(TQWidget *parent, const char grid->addWidget(otherDelimiterEdit, 8, 1); otherDelimiterEdit->setEnabled(false); - connect(delimiterCombo, SIGNAL(activated(int)), this, SLOT(delimiterChanged(int))); - connect(nameEdit, SIGNAL(textChanged(const TQString&)), this, SLOT(nameChanged(const TQString&))); + connect(delimiterCombo, TQ_SIGNAL(activated(int)), this, TQ_SLOT(delimiterChanged(int))); + connect(nameEdit, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(nameChanged(const TQString&))); } |