summaryrefslogtreecommitdiffstats
path: root/src/mixer
diff options
context:
space:
mode:
authorOwen Williams <owilliams@mixxx.org>2021-07-23 11:28:06 -0400
committerOwen Williams <owilliams@mixxx.org>2021-07-23 11:28:06 -0400
commit77e95fbfe083d1e756af6f58ff2672a045565a8b (patch)
tree5ee66066792c58ed0c3c3934c7782b6e280f13a8 /src/mixer
parent460124bf9ce85010de544b0cc83e04b6a2e5e8b2 (diff)
Update ReplayGain: Use consistent case for ReplayGain
Diffstat (limited to 'src/mixer')
-rw-r--r--src/mixer/basetrackplayer.cpp4
-rw-r--r--src/mixer/basetrackplayer.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mixer/basetrackplayer.cpp b/src/mixer/basetrackplayer.cpp
index 78e82e2ee5..b18d3eb173 100644
--- a/src/mixer/basetrackplayer.cpp
+++ b/src/mixer/basetrackplayer.cpp
@@ -198,7 +198,7 @@ BaseTrackPlayerImpl::BaseTrackPlayerImpl(
connect(m_pUpdateReplayGainFromPregain.get(),
&ControlObject::valueChanged,
this,
- &BaseTrackPlayerImpl::slotUpdateReplaygainFromPregain);
+ &BaseTrackPlayerImpl::slotUpdateReplayGainFromPregain);
}
BaseTrackPlayerImpl::~BaseTrackPlayerImpl() {
@@ -739,7 +739,7 @@ void BaseTrackPlayerImpl::slotShiftCuesMillisButton(double value, double millise
slotShiftCuesMillis(milliseconds);
}
-void BaseTrackPlayerImpl::slotUpdateReplaygainFromPregain(double pressed) {
+void BaseTrackPlayerImpl::slotUpdateReplayGainFromPregain(double pressed) {
if (pressed <= 0) {
return;
}
diff --git a/src/mixer/basetrackplayer.h b/src/mixer/basetrackplayer.h
index 18e750f81c..6746957cd5 100644
--- a/src/mixer/basetrackplayer.h
+++ b/src/mixer/basetrackplayer.h
@@ -100,7 +100,7 @@ class BaseTrackPlayerImpl : public BaseTrackPlayer {
void slotWaveformZoomSetDefault(double pressed);
void slotShiftCuesMillis(double milliseconds);
void slotShiftCuesMillisButton(double value, double milliseconds);
- void slotUpdateReplaygainFromPregain(double pressed);
+ void slotUpdateReplayGainFromPregain(double pressed);
private:
void setReplayGain(double value);