diff options
author | Johnathan Corgan | 2010-10-06 12:20:08 -0700 |
---|---|---|
committer | Johnathan Corgan | 2010-10-06 12:20:08 -0700 |
commit | 2723c3fb2a22872bba1c72bab1d0c4e74ffda86f (patch) | |
tree | c1a6c2564c15464b8c1275620c520482f9b5ac9c /gr-qtgui/src/lib/qtgui_sink_f.h | |
parent | 916b205660aa676e1587411b48f24b6d5d3c0de2 (diff) | |
parent | f18025c099e4f69829dc4fc1732a4a9e83b3eb1d (diff) | |
download | gnuradio-2723c3fb2a22872bba1c72bab1d0c4e74ffda86f.tar.gz gnuradio-2723c3fb2a22872bba1c72bab1d0c4e74ffda86f.tar.bz2 gnuradio-2723c3fb2a22872bba1c72bab1d0c4e74ffda86f.zip |
Merge remote branch 'tom/qtfix' into maint
* tom/qtfix:
Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner.
Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API.
Fixed gitignore to reflect changes in moc/ui file naming.
Fixes a lot of warnings by cleaning up namespace issues.
Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner.
Removing qwtplot3d dependency and fixing a missed include in waterfallGlobalData.h.
Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API.
Diffstat (limited to 'gr-qtgui/src/lib/qtgui_sink_f.h')
-rw-r--r-- | gr-qtgui/src/lib/qtgui_sink_f.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-qtgui/src/lib/qtgui_sink_f.h b/gr-qtgui/src/lib/qtgui_sink_f.h index f603da7b6..0cac35d90 100644 --- a/gr-qtgui/src/lib/qtgui_sink_f.h +++ b/gr-qtgui/src/lib/qtgui_sink_f.h @@ -23,12 +23,12 @@ #ifndef INCLUDED_QTGUI_SINK_F_H #define INCLUDED_QTGUI_SINK_F_H +#include <Python.h> #include <gr_block.h> #include <gr_firdes.h> #include <gri_fft.h> #include <qapplication.h> #include <qtgui.h> -#include <Python.h> #include "SpectrumGUIClass.h" class qtgui_sink_f; @@ -82,7 +82,7 @@ private: int d_index; float *d_residbuf; - bool d_plotfreq, d_plotwaterfall, d_plotwaterfall3d, d_plottime, d_plotconst; + bool d_plotfreq, d_plotwaterfall, d_plottime, d_plotconst; double d_update_time; |