diff options
author | Andrej Rode <mail@andrejro.de> | 2018-03-03 19:01:58 +0100 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2018-03-04 11:38:03 +0100 |
commit | cbd03b4f2e2ebab1ec3bdca02854d7f2491b8a1d (patch) | |
tree | 53993a2fdced24833c25336bbc91b23244e9efdd /gr-qtgui/lib/plot_raster.cc | |
parent | 7e758dd41aa8ff72e6be903d682dbdd922ecc8dc (diff) |
cleanup: add missing includes + reorder qtgui includes correctly
Diffstat (limited to 'gr-qtgui/lib/plot_raster.cc')
-rw-r--r-- | gr-qtgui/lib/plot_raster.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gr-qtgui/lib/plot_raster.cc b/gr-qtgui/lib/plot_raster.cc index b40513506d..f565977d5b 100644 --- a/gr-qtgui/lib/plot_raster.cc +++ b/gr-qtgui/lib/plot_raster.cc @@ -20,14 +20,16 @@ * Boston, MA 02110-1301, USA. */ -#include <iostream> +#include <gnuradio/qtgui/plot_raster.h> + #include <qimage.h> #include <qpen.h> #include <qpainter.h> #include "qwt_painter.h" #include "qwt_scale_map.h" #include "qwt_color_map.h" -#include <gnuradio/qtgui/plot_raster.h> + +#include <iostream> #if QWT_VERSION < 0x060000 #include "qwt_double_interval.h" |