diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:48:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:48:13 +0900 |
commit | 0075327cfd432d756fff5de46626067a3856948e (patch) | |
tree | 7fbc9804960dc6ef1aa99054967459f4d9a5f464 /src/qalculateinsertmatrixvectordialog.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 <[email protected]>
Diffstat (limited to 'src/qalculateinsertmatrixvectordialog.cpp')
-rw-r--r-- | src/qalculateinsertmatrixvectordialog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/qalculateinsertmatrixvectordialog.cpp b/src/qalculateinsertmatrixvectordialog.cpp index d8791e9..81d09ef 100644 --- a/src/qalculateinsertmatrixvectordialog.cpp +++ b/src/qalculateinsertmatrixvectordialog.cpp @@ -97,11 +97,11 @@ QalculateInsertMatrixVectorDialog::QalculateInsertMatrixVectorDialog(TQWidget *p insertSelectionButton = actionButton(User1); onSelectionChanged(); - connect(insertSelectionButton, SIGNAL(clicked()), this, SLOT(insertSelection())); - connect(elementsTable, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged())); - 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(insertSelectionButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(insertSelection())); + connect(elementsTable, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(onSelectionChanged())); + 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))); } |