summaryrefslogtreecommitdiff
path: root/gr-qtgui/lib/sink_c_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-qtgui/lib/sink_c_impl.cc')
-rw-r--r--gr-qtgui/lib/sink_c_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-qtgui/lib/sink_c_impl.cc b/gr-qtgui/lib/sink_c_impl.cc
index 39bd74aa3e..5277da256d 100644
--- a/gr-qtgui/lib/sink_c_impl.cc
+++ b/gr-qtgui/lib/sink_c_impl.cc
@@ -92,7 +92,7 @@ sink_c_impl::sink_c_impl(int fftsize,
// this is usually desired when plotting
d_shift = true;
- d_fft = new fft::fft_complex(d_fftsize, true);
+ d_fft = new fft::fft_complex_fwd(d_fftsize);
d_index = 0;
d_residbuf =
@@ -279,7 +279,7 @@ void sink_c_impl::fftresize()
// Reset FFTW plan for new size
delete d_fft;
- d_fft = new fft::fft_complex(d_fftsize, true);
+ d_fft = new fft::fft_complex_fwd(d_fftsize);
}
}