~mixxxdevelopers/mixxx/trunk

« back to all changes in this revision

Viewing changes to mixxx/src/controllogpotmeter.cpp

Merging features_controllerAbstraction. Migration of mappings from .mixxx/midi/ to controllers/ only works on a version upgrade (end-users.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
    return midival;
113
113
}
114
114
 
115
 
void ControlLogpotmeter::setValueFromMidi(MidiCategory, double v) {
 
115
void ControlLogpotmeter::setValueFromMidi(MidiOpCode o, double v) {
 
116
    Q_UNUSED(o);
116
117
  //    m_dValue = m_dMinValue + (v/127.)*m_dValueRange;
117
118
    m_dValue = getValueFromWidget(v);
118
119
    //    qDebug() << "SetValueFromMidiValue : " << m_dValue;