LV2Browser: fixed compilation

I somehow forgot to migrate LV2Browser plugin while reworking Mixer.
Should compile again now.
This commit is contained in:
Tobias Doerffel
2009-11-30 01:37:53 +01:00
parent 114aeb3e2c
commit c11c228437
2 changed files with 5 additions and 4 deletions

View File

@@ -33,9 +33,10 @@
#include <QtGui/QVBoxLayout>
#include "AudioDevice.h"
#include "AudioBackend.h"
#include "AudioOutputContext.h"
#include "Mixer.h"
#include "engine.h"
#include "mixer.h"
@@ -81,7 +82,7 @@ lv2Description::lv2Description( QWidget * _parent,
if( description->type == _type &&
(
_type != VALID ||
description->inputChannels <= engine::getMixer()->audioDev()->channels()
description->inputChannels <= engine::mixer()->audioOutputContext()->audioBackend()->channels()
)
)
{

View File

@@ -30,7 +30,7 @@
#include "embed.h"
#include "engine.h"
#include "mixer.h"
#include "Mixer.h"
lv2PortDialog::lv2PortDialog( const lv2_key_t & _key )