summaryrefslogtreecommitdiffstats
path: root/src/analyserqueue.h
diff options
context:
space:
mode:
authorUwe Klotz <uwe_klotz@web.de>2014-11-15 21:41:17 +0100
committerUwe Klotz <uwe_klotz@web.de>2014-11-16 12:56:40 +0100
commit2cd93b3a074c3fc9e963541524c04c5a3900fc12 (patch)
tree4c02777193f51809f97dd78a42b1a4b827e86ee1 /src/analyserqueue.h
parent456c2e06b33608de6d8b86ccc54a80fc5b194f5f (diff)
Eliminate inappropriate inheritance: SoundSourceProxy is-not-a SoundSource
Diffstat (limited to 'src/analyserqueue.h')
-rw-r--r--src/analyserqueue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analyserqueue.h b/src/analyserqueue.h
index 5fac00ef2b..9b742ed1be 100644
--- a/src/analyserqueue.h
+++ b/src/analyserqueue.h
@@ -9,9 +9,9 @@
#include "configobject.h"
#include "analyser.h"
+#include "soundsource.h"
#include "trackinfoobject.h"
-class SoundSourceProxy;
class TrackCollection;
class AnalyserQueue : public QThread {
@@ -58,7 +58,7 @@ class AnalyserQueue : public QThread {
bool isLoadedTrackWaiting(TrackPointer tio);
TrackPointer dequeueNextBlocking();
- bool doAnalysis(TrackPointer tio, SoundSourceProxy* pSoundSource);
+ bool doAnalysis(TrackPointer tio, const Mixxx::SoundSourcePointer& pSoundSource);
void emitUpdateProgress(TrackPointer tio, int progress);
bool m_exit;