summaryrefslogtreecommitdiffstats
path: root/src/qalculatevariablesdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qalculatevariablesdialog.cpp')
-rw-r--r--src/qalculatevariablesdialog.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/qalculatevariablesdialog.cpp b/src/qalculatevariablesdialog.cpp
index 86ec001..53f9b6f 100644
--- a/src/qalculatevariablesdialog.cpp
+++ b/src/qalculatevariablesdialog.cpp
@@ -91,17 +91,17 @@ QalculateVariablesDialog::QalculateVariablesDialog(TQWidget *parent, const char
resize(TQSize(675, 375).expandedTo(size()));
- connect(buttonClose, SIGNAL(clicked()), this, SLOT(close()));
- connect(newButton, SIGNAL(clicked()), this, SLOT(newVariable()));
- connect(editButton, SIGNAL(clicked()), this, SLOT(editVariable()));
- connect(deleteButton, SIGNAL(clicked()), this, SLOT(deleteVariable()));
- connect(deactivateButton, SIGNAL(clicked()), this, SLOT(deactivateVariable()));
- connect(insertButton, SIGNAL(clicked()), this, SLOT(insertVariable()));
- connect(exportButton, SIGNAL(clicked()), this, SLOT(exportVariable()));
- connect(variableView, SIGNAL(selectionChanged()), this, SLOT(variableSelected()));
- connect(variableView, SIGNAL(doubleClicked(TQListViewItem*)), this, SLOT(variableDoubleClicked(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(newVariable()));
+ connect(editButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editVariable()));
+ connect(deleteButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteVariable()));
+ connect(deactivateButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deactivateVariable()));
+ connect(insertButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(insertVariable()));
+ connect(exportButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(exportVariable()));
+ connect(variableView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(variableSelected()));
+ connect(variableView, TQ_SIGNAL(doubleClicked(TQListViewItem*)), this, TQ_SLOT(variableDoubleClicked(TQListViewItem*)));
+ connect(categoryView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(categorySelected()));
+ connect(helpButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotHelp()));
}