diff options
author | trondeau <trondeau@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-08-10 02:07:55 +0000 |
---|---|---|
committer | trondeau <trondeau@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-08-10 02:07:55 +0000 |
commit | b1fff92b08ccb2d0aecdea56450c79a63ab3178b (patch) | |
tree | 6b96cdf505135d16714849da0f2f5691dd8d4828 /gr-qtgui/src/lib/TimeDomainDisplayPlot.h | |
parent | 34791dbc3c8ab646b63d8ae6e96972b20fe6fd37 (diff) |
Significantly improved performance of the Qt Gui sinks. This removes a number of redundant loops and memcopies by combining operations and reduces the CPU load greatly to run much more smoothly.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11559 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-qtgui/src/lib/TimeDomainDisplayPlot.h')
-rw-r--r-- | gr-qtgui/src/lib/TimeDomainDisplayPlot.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-qtgui/src/lib/TimeDomainDisplayPlot.h b/gr-qtgui/src/lib/TimeDomainDisplayPlot.h index 9c6364af29..56d44539d8 100644 --- a/gr-qtgui/src/lib/TimeDomainDisplayPlot.h +++ b/gr-qtgui/src/lib/TimeDomainDisplayPlot.h @@ -28,6 +28,7 @@ public: virtual void replot(); void set_yaxis(double min, double max); + void set_xaxis(double min, double max); protected slots: void LegendEntryChecked(QwtPlotItem *plotItem, bool on); |