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/qalculateeditunitdialog.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/qalculateeditunitdialog.cpp')
-rw-r--r-- | src/qalculateeditunitdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qalculateeditunitdialog.cpp b/src/qalculateeditunitdialog.cpp index 1c3d361..edc8a63 100644 --- a/src/qalculateeditunitdialog.cpp +++ b/src/qalculateeditunitdialog.cpp @@ -126,9 +126,9 @@ QalculateEditUnitDialog::QalculateEditUnitDialog(TQWidget *parent, const char *n inverseRelationEdit = new KLineEdit(widget); grid->addWidget(inverseRelationEdit, 4, 1); - connect(namesButton, SIGNAL(clicked()), this, SLOT(editNames())); - connect(classCombo, SIGNAL(activated(int)), this, SLOT(classChanged(int))); - connect(nameEdit, SIGNAL(textChanged(const TQString&)), this, SLOT(nameChanged(const TQString&))); + connect(namesButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editNames())); + connect(classCombo, TQ_SIGNAL(activated(int)), this, TQ_SLOT(classChanged(int))); + connect(nameEdit, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(nameChanged(const TQString&))); } |