summaryrefslogtreecommitdiffstats
path: root/src/qalculateinsertmatrixvectordialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-07 19:48:13 +0900
committerMichele Calgaro <[email protected]>2024-01-07 19:48:13 +0900
commit0075327cfd432d756fff5de46626067a3856948e (patch)
tree7fbc9804960dc6ef1aa99054967459f4d9a5f464 /src/qalculateinsertmatrixvectordialog.cpp
parent8373cb43a7a73d1348c583c39d63c9e3aa0a4a42 (diff)
downloadqalculate-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.cpp10
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)));
}