summaryrefslogtreecommitdiffstats
path: root/src/qalculatefunctionsdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:48:13 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:48:13 +0900
commit0075327cfd432d756fff5de46626067a3856948e (patch)
tree7fbc9804960dc6ef1aa99054967459f4d9a5f464 /src/qalculatefunctionsdialog.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 <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/qalculatefunctionsdialog.cpp')
-rw-r--r--src/qalculatefunctionsdialog.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/qalculatefunctionsdialog.cpp b/src/qalculatefunctionsdialog.cpp
index 7ea9e90..3028565 100644
--- a/src/qalculatefunctionsdialog.cpp
+++ b/src/qalculatefunctionsdialog.cpp
@@ -92,17 +92,17 @@ QalculateFunctionsDialog::QalculateFunctionsDialog(TQWidget *parent, const char
resize(TQSize(675, 475).expandedTo(size()));
- connect(buttonClose, SIGNAL(clicked()), this, SLOT(close()));
- connect(newButton, SIGNAL(clicked()), this, SLOT(newFunction()));
- connect(editButton, SIGNAL(clicked()), this, SLOT(editFunction()));
- connect(deleteButton, SIGNAL(clicked()), this, SLOT(deleteFunction()));
- connect(deactivateButton, SIGNAL(clicked()), this, SLOT(deactivateFunction()));
- connect(insertButton, SIGNAL(clicked()), this, SLOT(insertFunction()));
- connect(applyButton, SIGNAL(clicked()), this, SLOT(applyFunction()));
- connect(functionView, SIGNAL(selectionChanged()), this, SLOT(functionSelected()));
- connect(functionView, SIGNAL(doubleClicked(TQListViewItem*)), this, SLOT(functionDoubleClicked(TQListViewItem*)));
- connect(categoryView, SIGNAL(selectionChanged()), this, SLOT(categorySelected()));
- connect(helpButton, SIGNAL(clicked()), this, SLOT(slotHelp()));
+ connect(buttonClose, TQ_SIGNAL(clicked()), this, TQ_SLOT(close()));
+ connect(newButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(newFunction()));
+ connect(editButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editFunction()));
+ connect(deleteButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteFunction()));
+ connect(deactivateButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deactivateFunction()));
+ connect(insertButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(insertFunction()));
+ connect(applyButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(applyFunction()));
+ connect(functionView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(functionSelected()));
+ connect(functionView, TQ_SIGNAL(doubleClicked(TQListViewItem*)), this, TQ_SLOT(functionDoubleClicked(TQListViewItem*)));
+ connect(categoryView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(categorySelected()));
+ connect(helpButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotHelp()));
}