summaryrefslogtreecommitdiffstats
path: root/src/deck.cpp
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2014-11-29 15:22:52 -0500
committerRJ Ryan <rryan@mixxx.org>2014-11-29 15:22:52 -0500
commit943e029f2841e84f1aad873ae8c74c8ec7570c11 (patch)
treeb9e77cbed4d6f83aa3928bfdca46cf199eb55bfe /src/deck.cpp
parentf143ea23c467fabba3612a4b896ac4187bcadc75 (diff)
Extract interface from BaseTrackPlayer and PlayerManager.
This will make mocking and faking them much easier and prevent implementation details from being exposed elsewhere in Mixxx.
Diffstat (limited to 'src/deck.cpp')
-rw-r--r--src/deck.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/deck.cpp b/src/deck.cpp
index ffdff906d2..4483d7e4c0 100644
--- a/src/deck.cpp
+++ b/src/deck.cpp
@@ -6,8 +6,8 @@ Deck::Deck(QObject* pParent,
EffectsManager* pEffectsManager,
EngineChannel::ChannelOrientation defaultOrientation,
QString group) :
- BaseTrackPlayer(pParent, pConfig, pMixingEngine, pEffectsManager,
- defaultOrientation, group, true, false) {
+ BaseTrackPlayerImpl(pParent, pConfig, pMixingEngine, pEffectsManager,
+ defaultOrientation, group, true, false) {
}
Deck::~Deck() {