Skip to content

Commit

Permalink
renamed tmp var to adhere to naming conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
RiedleroD committed Oct 5, 2024
1 parent c66a641 commit a578d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/AudioFileProcessor/AudioFileProcessorWaveView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -470,10 +470,10 @@ void AudioFileProcessorWaveView::reverse()
- m_sample->startFrame()
);

const int m_from_ = m_from;
const int fromTmp = m_from;

setFrom(m_sample->sampleSize() - m_to);
setTo(m_sample->sampleSize() - m_from_);
setTo(m_sample->sampleSize() - fromTmp);
m_reversed = ! m_reversed;
}

Expand Down

0 comments on commit a578d03

Please sign in to comment.