mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-10 10:10:02 -04:00
Rename all Controller-family classes to new style
Adjust capitialization on all Controller-related classes to new standards and update all calling code
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
|
||||
#include <QtXml/QDomElement>
|
||||
|
||||
#include "peak_controller.h"
|
||||
#include "PeakController.h"
|
||||
#include "peak_controller_effect_controls.h"
|
||||
#include "peak_controller_effect.h"
|
||||
|
||||
@@ -50,9 +50,9 @@ void peakControllerEffectControls::loadSettings( const QDomElement & _this )
|
||||
m_muteModel.setValue( _this.attribute( "mute" ).toFloat() );
|
||||
|
||||
int effectId = _this.attribute( "effectId" ).toInt();
|
||||
if( effectId > peakController::s_lastEffectId )
|
||||
if( effectId > PeakController::s_lastEffectId )
|
||||
{
|
||||
peakController::s_lastEffectId = effectId;
|
||||
PeakController::s_lastEffectId = effectId;
|
||||
}
|
||||
m_effect->m_effectId = effectId;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user