diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:48:13 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 10:57:16 +0900 |
| commit | 9fe1e65bf42ceb3d5bf818624b2674ba5e10c1ed (patch) | |
| tree | d9b923a151fdb07620f8e056bfaf044c87a08667 /src/qalculateplotdialog.cpp | |
| parent | d88c548dcfcafedab261a20eec043da0cf4e88e3 (diff) | |
| download | qalculate-tde-9fe1e65b.tar.gz qalculate-tde-9fe1e65b.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 0075327cfd432d756fff5de46626067a3856948e)
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())); } |
