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/qalculateeditmatrixvectordialog.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/qalculateeditmatrixvectordialog.cpp')
-rw-r--r-- | src/qalculateeditmatrixvectordialog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/qalculateeditmatrixvectordialog.cpp b/src/qalculateeditmatrixvectordialog.cpp index 1a65a48..3f61c31 100644 --- a/src/qalculateeditmatrixvectordialog.cpp +++ b/src/qalculateeditmatrixvectordialog.cpp @@ -115,11 +115,11 @@ QalculateEditMatrixVectorDialog::QalculateEditMatrixVectorDialog(TQWidget *paren elementsTable = new QalculateEditMatrixTable(0, 0, mainWidget()); grid->addMultiCellWidget(elementsTable, 8, 8, 0, 1); - connect(namesButton, SIGNAL(clicked()), this, SLOT(editNames())); - connect(nameEdit, SIGNAL(textChanged(const TQString&)), this, SLOT(nameChanged(const TQString&))); - connect(rowsBox, SIGNAL(valueChanged(int)), this, SLOT(rowsChanged(int))); - connect(columnsBox, SIGNAL(valueChanged(int)), this, SLOT(columnsChanged(int))); - connect(group, SIGNAL(clicked(int)), this, SLOT(typeChanged(int))); + connect(namesButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editNames())); + connect(nameEdit, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(nameChanged(const TQString&))); + connect(rowsBox, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(rowsChanged(int))); + connect(columnsBox, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(columnsChanged(int))); + connect(group, TQ_SIGNAL(clicked(int)), this, TQ_SLOT(typeChanged(int))); } |