From 42fe3e571be14e70cb06ea1244125553f0606be4 Mon Sep 17 00:00:00 2001 From: Eric Blossom Date: Wed, 24 Nov 2010 17:28:18 -0800 Subject: Removed link to missing .png in an attempt to keep doxygen from crashing --- gr-qtgui/src/lib/plot_waterfall.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'gr-qtgui/src/lib/plot_waterfall.h') diff --git a/gr-qtgui/src/lib/plot_waterfall.h b/gr-qtgui/src/lib/plot_waterfall.h index 2be677b10..91746e3f3 100644 --- a/gr-qtgui/src/lib/plot_waterfall.h +++ b/gr-qtgui/src/lib/plot_waterfall.h @@ -16,8 +16,6 @@ class QwtColorMap; ( the intensity ) is displayed using colors. The colors are calculated from the values using a color map. - \image html spectrogram3.png - \sa QwtRasterData, QwtColorMap */ -- cgit From 472176780edc5dcaaa9a80af5e73355e9e4470d5 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Mon, 17 Jan 2011 17:34:02 -0800 Subject: qtgui plot waterfall fix Removed QWT_EXPORT from PlotWaterfall. PlotWaterfall is not part of libqwt, this is likely a copy/paste typo. Its very wrong and specifies incorrect linkage. Affects MSVC. --- gr-qtgui/src/lib/plot_waterfall.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gr-qtgui/src/lib/plot_waterfall.h') diff --git a/gr-qtgui/src/lib/plot_waterfall.h b/gr-qtgui/src/lib/plot_waterfall.h index 91746e3f3..a11461611 100644 --- a/gr-qtgui/src/lib/plot_waterfall.h +++ b/gr-qtgui/src/lib/plot_waterfall.h @@ -19,7 +19,7 @@ class QwtColorMap; \sa QwtRasterData, QwtColorMap */ -class QWT_EXPORT PlotWaterfall: public QwtPlotRasterItem +class PlotWaterfall: public QwtPlotRasterItem { public: explicit PlotWaterfall(WaterfallData* data, const QString &title = QString::null); -- cgit