diff options
Diffstat (limited to 'src/qalculateplotdialog.cpp')
-rw-r--r-- | src/qalculateplotdialog.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/qalculateplotdialog.cpp b/src/qalculateplotdialog.cpp index 6c0a61b..1e26fd1 100644 --- a/src/qalculateplotdialog.cpp +++ b/src/qalculateplotdialog.cpp @@ -296,21 +296,21 @@ QalculatePlotDialog::QalculatePlotDialog(TQWidget *parent, const char *name) : K seriesTitleEdit->setFocus(); - connect(seriesTitleEdit, SIGNAL(returnPressed()), expressionEdit, SLOT(setFocus())); - connect(expressionEdit, SIGNAL(returnPressed()), this, SLOT(expressionActivated())); - connect(typeGroup, SIGNAL(clicked(int)), this, SLOT(typeChanged(int))); - connect(rangeGroup, SIGNAL(clicked(int)), this, SLOT(rangeTypeChanged(int))); - connect(logXButton, SIGNAL(toggled(bool)), logXBox, SLOT(setEnabled(bool))); - connect(logYButton, SIGNAL(toggled(bool)), logYBox, SLOT(setEnabled(bool))); - connect(applyRangeButton, SIGNAL(clicked()), this, SLOT(applyRange())); - connect(applyAppearanceButton, SIGNAL(clicked()), this, SLOT(applyAppearance())); - connect(seriesView, SIGNAL(selectionChanged()), this, SLOT(seriesSelected())); - connect(seriesView, SIGNAL(itemRenamed(TQListViewItem*, const TQString&, int)), this, SLOT(seriesItemRenamed(TQListViewItem*, const TQString&, int))); - connect(addButton, SIGNAL(clicked()), this, SLOT(addSeries())); - connect(modifyButton, SIGNAL(clicked()), this, SLOT(modifySeries())); - connect(removeButton, SIGNAL(clicked()), this, SLOT(removeSeries())); - connect(this, SIGNAL(user1Clicked()), this, SLOT(savePlot())); - connect(this, SIGNAL(finished()), this, SLOT(onClosing())); + connect(seriesTitleEdit, TQ_SIGNAL(returnPressed()), expressionEdit, TQ_SLOT(setFocus())); + connect(expressionEdit, TQ_SIGNAL(returnPressed()), this, TQ_SLOT(expressionActivated())); + connect(typeGroup, TQ_SIGNAL(clicked(int)), this, TQ_SLOT(typeChanged(int))); + connect(rangeGroup, TQ_SIGNAL(clicked(int)), this, TQ_SLOT(rangeTypeChanged(int))); + connect(logXButton, TQ_SIGNAL(toggled(bool)), logXBox, TQ_SLOT(setEnabled(bool))); + connect(logYButton, TQ_SIGNAL(toggled(bool)), logYBox, TQ_SLOT(setEnabled(bool))); + connect(applyRangeButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(applyRange())); + connect(applyAppearanceButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(applyAppearance())); + connect(seriesView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(seriesSelected())); + connect(seriesView, TQ_SIGNAL(itemRenamed(TQListViewItem*, const TQString&, int)), this, TQ_SLOT(seriesItemRenamed(TQListViewItem*, const TQString&, int))); + connect(addButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(addSeries())); + connect(modifyButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(modifySeries())); + connect(removeButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(removeSeries())); + connect(this, TQ_SIGNAL(user1Clicked()), this, TQ_SLOT(savePlot())); + connect(this, TQ_SIGNAL(finished()), this, TQ_SLOT(onClosing())); } |