Mixer: renamed class and file name

The mixer class is now named "Mixer" and accessible via engine::mixer().
This commit is contained in:
Tobias Doerffel
2014-01-08 22:35:14 +01:00
parent 40290117ff
commit 0ff1f91c1b
107 changed files with 509 additions and 509 deletions

View File

@@ -73,7 +73,7 @@ public:
m_detectedMidiChannel = _me.m_channel + 1;
m_detectedMidiController = ( _me.m_data.m_bytes[0] & 0x7F ) + 1;
m_detectedMidiPort =
engine::getMixer()->midiClient()->sourcePortName( _me );
engine::mixer()->midiClient()->sourcePortName( _me );
emit valueChanged();
}
@@ -168,7 +168,7 @@ ControllerConnectionDialog::ControllerConnectionDialog( QWidget * _parent,
// when using with non-raw-clients we can provide buttons showing
// our port-menus when being clicked
if( !engine::getMixer()->midiClient()->isRaw() )
if( !engine::mixer()->midiClient()->isRaw() )
{
m_readablePorts = new MidiPortMenu( MidiPort::Input );
connect( m_readablePorts, SIGNAL( triggered( QAction * ) ),