summaryrefslogtreecommitdiffstats
path: root/demos/spectrum/app/spectrumanalyser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'demos/spectrum/app/spectrumanalyser.cpp')
-rw-r--r--demos/spectrum/app/spectrumanalyser.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/demos/spectrum/app/spectrumanalyser.cpp b/demos/spectrum/app/spectrumanalyser.cpp
index 1cc47a6..2fa17b1 100644
--- a/demos/spectrum/app/spectrumanalyser.cpp
+++ b/demos/spectrum/app/spectrumanalyser.cpp
@@ -64,6 +64,8 @@ SpectrumAnalyserThread::SpectrumAnalyserThread(QObject *parent)
#endif
{
#ifdef SPECTRUM_ANALYSER_SEPARATE_THREAD
+ // moveToThread() cannot be called on a QObject with a parent
+ setParent(0);
moveToThread(m_thread);
m_thread->start();
#endif