diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-01-03 18:27:13 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-01-03 18:27:13 -0500 |
commit | 3bf0ca10d647f0590660679cb5b104041ea3ee13 (patch) | |
tree | 1cc8cb37aa628be4e9067f16417b916810bb0977 /gr-qtgui/lib/DisplayPlot.cc | |
parent | 6aca2a857cf458de79021c7eaa31bb08bee906b0 (diff) |
qtgui: missed these updated slot names.
Diffstat (limited to 'gr-qtgui/lib/DisplayPlot.cc')
-rw-r--r-- | gr-qtgui/lib/DisplayPlot.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gr-qtgui/lib/DisplayPlot.cc b/gr-qtgui/lib/DisplayPlot.cc index dc42da9dab..bf1c198897 100644 --- a/gr-qtgui/lib/DisplayPlot.cc +++ b/gr-qtgui/lib/DisplayPlot.cc @@ -60,11 +60,11 @@ DisplayPlot::DisplayPlot(int nplots, QWidget* parent) #if QWT_VERSION < 0x060000 connect(_picker, SIGNAL(selected(const QwtDoublePoint &)), - this, SLOT(OnPickerPointSelected(const QwtDoublePoint &))); + this, SLOT(onPickerPointSelected(const QwtDoublePoint &))); #else _picker->setStateMachine(new QwtPickerDblClickPointMachine()); connect(_picker, SIGNAL(selected(const QPointF &)), - this, SLOT(OnPickerPointSelected6(const QPointF &))); + this, SLOT(onPickerPointSelected6(const QPointF &))); #endif // Configure magnify on mouse wheel @@ -83,7 +83,7 @@ DisplayPlot::DisplayPlot(int nplots, QWidget* parent) insertLegend(legendDisplay); connect(this, SIGNAL(legendChecked(QwtPlotItem *, bool)), - this, SLOT(LegendEntryChecked(QwtPlotItem *, bool))); + this, SLOT(legendEntryChecked(QwtPlotItem *, bool))); } DisplayPlot::~DisplayPlot() @@ -400,7 +400,7 @@ void DisplayPlot::onPickerPointSelected(const QwtDoublePoint & p) { QPointF point = p; - //fprintf(stderr,"OnPickerPointSelected %f %f\n", point.x(), point.y()); + //fprintf(stderr,"onPickerPointSelected %f %f\n", point.x(), point.y()); emit plotPointSelected(point); } @@ -408,6 +408,6 @@ void DisplayPlot::onPickerPointSelected6(const QPointF & p) { QPointF point = p; - //fprintf(stderr,"OnPickerPointSelected %f %f\n", point.x(), point.y()); + //fprintf(stderr,"onPickerPointSelected %f %f\n", point.x(), point.y()); emit plotPointSelected(point); } |