summaryrefslogtreecommitdiffstats
path: root/src/mixer/playerinfo.h
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2016-04-27 20:57:58 -0700
committerRJ Ryan <rryan@mixxx.org>2016-04-27 21:00:41 -0700
commite59916caf72a256bb28b1722759a629c5cc9cf81 (patch)
tree88bdffc1b577802ef69e7f423808491093919e58 /src/mixer/playerinfo.h
parentcaee5a884aca657a2ee554f16254443fc6c54022 (diff)
Replace use of "slave" with "proxy" or "follower" everywhere.
Diffstat (limited to 'src/mixer/playerinfo.h')
-rw-r--r--src/mixer/playerinfo.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mixer/playerinfo.h b/src/mixer/playerinfo.h
index 960477c953..a16537ba17 100644
--- a/src/mixer/playerinfo.h
+++ b/src/mixer/playerinfo.h
@@ -22,7 +22,7 @@
#include <QMap>
#include <QTimerEvent>
-#include "control/controlobjectslave.h"
+#include "control/controlproxy.h"
#include "track/track.h"
class PlayerInfo : public QObject {
@@ -53,10 +53,10 @@ class PlayerInfo : public QObject {
m_orientation(group, "orientation") {
}
- ControlObjectSlave m_play;
- ControlObjectSlave m_pregain;
- ControlObjectSlave m_volume;
- ControlObjectSlave m_orientation;
+ ControlProxy m_play;
+ ControlProxy m_pregain;
+ ControlProxy m_volume;
+ ControlProxy m_orientation;
};
void clearControlCache();
@@ -69,7 +69,7 @@ class PlayerInfo : public QObject {
virtual ~PlayerInfo();
mutable QMutex m_mutex;
- ControlObjectSlave* m_pCOxfader;
+ ControlProxy* m_pCOxfader;
// QMap is faster than QHash for small count of elements < 50
QMap<QString, TrackPointer> m_loadedTrackMap;
int m_currentlyPlayingDeck;