diff options
Diffstat (limited to 'src/qalculateunitsdialog.cpp')
-rw-r--r-- | src/qalculateunitsdialog.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/qalculateunitsdialog.cpp b/src/qalculateunitsdialog.cpp index c5c74e1..b20b7a2 100644 --- a/src/qalculateunitsdialog.cpp +++ b/src/qalculateunitsdialog.cpp @@ -117,23 +117,23 @@ QalculateUnitsDialog::QalculateUnitsDialog(TQWidget *parent, const char *name) : resize(TQSize(675, 425).expandedTo(size())); - connect(buttonClose, SIGNAL(clicked()), this, SLOT(close())); - connect(newButton, SIGNAL(clicked()), this, SLOT(newUnit())); - connect(editButton, SIGNAL(clicked()), this, SLOT(editUnit())); - connect(deleteButton, SIGNAL(clicked()), this, SLOT(deleteUnit())); - connect(deactivateButton, SIGNAL(clicked()), this, SLOT(deactivateUnit())); - connect(insertButton, SIGNAL(clicked()), this, SLOT(insertUnit())); - connect(convertResultButton, SIGNAL(clicked()), this, SLOT(convertResult())); - connect(unitView, SIGNAL(selectionChanged()), this, SLOT(unitSelected())); - connect(unitView, SIGNAL(doubleClicked(TQListViewItem*)), this, SLOT(unitDoubleClicked(TQListViewItem*))); - connect(categoryView, SIGNAL(selectionChanged()), this, SLOT(categorySelected())); - connect(toCombo, SIGNAL(activated(int)), this, SLOT(toUnitSelected(int))); - connect(convertButton, SIGNAL(clicked()), this, SLOT(convertClicked())); - connect(fromEdit, SIGNAL(returnPressed()), this, SLOT(convert())); - connect(toEdit, SIGNAL(returnPressed()), this, SLOT(convertReversed())); - connect(fromEdit, SIGNAL(lostFocus()), this, SLOT(convert())); - connect(toEdit, SIGNAL(lostFocus()), this, SLOT(convertReversed())); - connect(helpButton, SIGNAL(clicked()), this, SLOT(slotHelp())); + connect(buttonClose, TQ_SIGNAL(clicked()), this, TQ_SLOT(close())); + connect(newButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(newUnit())); + connect(editButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editUnit())); + connect(deleteButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteUnit())); + connect(deactivateButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deactivateUnit())); + connect(insertButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(insertUnit())); + connect(convertResultButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(convertResult())); + connect(unitView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(unitSelected())); + connect(unitView, TQ_SIGNAL(doubleClicked(TQListViewItem*)), this, TQ_SLOT(unitDoubleClicked(TQListViewItem*))); + connect(categoryView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(categorySelected())); + connect(toCombo, TQ_SIGNAL(activated(int)), this, TQ_SLOT(toUnitSelected(int))); + connect(convertButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(convertClicked())); + connect(fromEdit, TQ_SIGNAL(returnPressed()), this, TQ_SLOT(convert())); + connect(toEdit, TQ_SIGNAL(returnPressed()), this, TQ_SLOT(convertReversed())); + connect(fromEdit, TQ_SIGNAL(lostFocus()), this, TQ_SLOT(convert())); + connect(toEdit, TQ_SIGNAL(lostFocus()), this, TQ_SLOT(convertReversed())); + connect(helpButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotHelp())); } |