summaryrefslogtreecommitdiffstats
path: root/src/qalculateeditfunctiondialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qalculateeditfunctiondialog.cpp')
-rw-r--r--src/qalculateeditfunctiondialog.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/qalculateeditfunctiondialog.cpp b/src/qalculateeditfunctiondialog.cpp
index 0912b2b..13f8803 100644
--- a/src/qalculateeditfunctiondialog.cpp
+++ b/src/qalculateeditfunctiondialog.cpp
@@ -138,14 +138,14 @@ QalculateEditFunctionDialog::QalculateEditFunctionDialog(TQWidget *parent, const
deleteArgumentButton = new TQPushButton(i18n("Delete"), page2);
hbox->addWidget(deleteArgumentButton);
- connect(namesButton, SIGNAL(clicked()), this, SLOT(editNames()));
- connect(subFunctionsButton, SIGNAL(clicked()), this, SLOT(editSubFunctions()));
- connect(nameEdit, SIGNAL(textChanged(const TQString&)), this, SLOT(nameChanged(const TQString&)));
- connect(newArgumentButton, SIGNAL(clicked()), this, SLOT(newArgument()));
- connect(editArgumentButton, SIGNAL(clicked()), this, SLOT(editArgument()));
- connect(deleteArgumentButton, SIGNAL(clicked()), this, SLOT(deleteArgument()));
- connect(argumentsView, SIGNAL(itemRenamed(TQListViewItem*, const TQString&, int)), this, SLOT(argumentRenamed(TQListViewItem*, const TQString&, int)));
- connect(argumentsView, SIGNAL(selectionChanged()), this, SLOT(argumentSelectionChanged()));
+ connect(namesButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editNames()));
+ connect(subFunctionsButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editSubFunctions()));
+ connect(nameEdit, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(nameChanged(const TQString&)));
+ connect(newArgumentButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(newArgument()));
+ connect(editArgumentButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editArgument()));
+ connect(deleteArgumentButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteArgument()));
+ connect(argumentsView, TQ_SIGNAL(itemRenamed(TQListViewItem*, const TQString&, int)), this, TQ_SLOT(argumentRenamed(TQListViewItem*, const TQString&, int)));
+ connect(argumentsView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(argumentSelectionChanged()));
}
@@ -501,11 +501,11 @@ QalculateEditSubFunctionsDialog::QalculateEditSubFunctionsDialog(TQWidget *paren
buttonClose->setDefault(true);
buttonLayout->addWidget(buttonClose);
- connect(subFunctionsView, SIGNAL(selectionChanged()), this, SLOT(selectionChanged()));
- connect(buttonClose, SIGNAL(clicked()), this, SLOT(accept()));
- connect(newButton, SIGNAL(clicked()), this, SLOT(newSubFunction()));
- connect(deleteButton, SIGNAL(clicked()), this, SLOT(deleteSubFunction()));
- connect(subFunctionsView, SIGNAL(clicked(TQListViewItem*, const TQPoint&, int)), this, SLOT(itemClicked(TQListViewItem*, const TQPoint&, int)));
+ connect(subFunctionsView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(selectionChanged()));
+ connect(buttonClose, TQ_SIGNAL(clicked()), this, TQ_SLOT(accept()));
+ connect(newButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(newSubFunction()));
+ connect(deleteButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteSubFunction()));
+ connect(subFunctionsView, TQ_SIGNAL(clicked(TQListViewItem*, const TQPoint&, int)), this, TQ_SLOT(itemClicked(TQListViewItem*, const TQPoint&, int)));
}
QalculateEditSubFunctionsDialog::~QalculateEditSubFunctionsDialog() {}
@@ -634,10 +634,10 @@ QalculateEditArgumentDialog::QalculateEditArgumentDialog(TQWidget *parent, const
maxIncludeEqualsButton = new TQCheckBox(i18n("Include equals"), mainWidget());
hbox->addWidget(maxIncludeEqualsButton);
- connect(conditionButton, SIGNAL(toggled(bool)), conditionEdit, SLOT(setEnabled(bool)));
- connect(minButton, SIGNAL(toggled(bool)), this, SLOT(minEnabled(bool)));
- connect(maxButton, SIGNAL(toggled(bool)), this, SLOT(maxEnabled(bool)));
- connect(typeCombo, SIGNAL(activated(int)), this, SLOT(typeChanged(int)));
+ connect(conditionButton, TQ_SIGNAL(toggled(bool)), conditionEdit, TQ_SLOT(setEnabled(bool)));
+ connect(minButton, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(minEnabled(bool)));
+ connect(maxButton, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(maxEnabled(bool)));
+ connect(typeCombo, TQ_SIGNAL(activated(int)), this, TQ_SLOT(typeChanged(int)));
}