@@ -327,11 +327,6 @@ const unsigned int PATCHBAY_PORT_TYPE_CV = 0x4; | |||||
*/ | */ | ||||
const unsigned int PATCHBAY_PORT_TYPE_MIDI = 0x8; | const unsigned int PATCHBAY_PORT_TYPE_MIDI = 0x8; | ||||
/*! | |||||
* Patchbay port is of Parameter type. | |||||
*/ | |||||
const unsigned int PATCHBAY_PORT_TYPE_PARAMETER = 0x10; | |||||
/** @} */ | /** @} */ | ||||
/* ------------------------------------------------------------------------------------------------------------ | /* ------------------------------------------------------------------------------------------------------------ | ||||
@@ -311,9 +311,6 @@ PATCHBAY_PORT_TYPE_CV = 0x4 | |||||
# Patchbay port is of MIDI type. | # Patchbay port is of MIDI type. | ||||
PATCHBAY_PORT_TYPE_MIDI = 0x8 | PATCHBAY_PORT_TYPE_MIDI = 0x8 | ||||
# Patchbay port is of Parameter type. | |||||
PATCHBAY_PORT_TYPE_PARAMETER = 0x10 | |||||
# ------------------------------------------------------------------------------------------------------------ | # ------------------------------------------------------------------------------------------------------------ | ||||
# Custom Data Types | # Custom Data Types | ||||
# These types define how the value in the CustomData struct is stored. | # These types define how the value in the CustomData struct is stored. | ||||
@@ -955,8 +955,6 @@ class CarlaPatchbayW(QFrame): | |||||
portType = patchcanvas.PORT_TYPE_AUDIO_JACK | portType = patchcanvas.PORT_TYPE_AUDIO_JACK | ||||
elif (portFlags & PATCHBAY_PORT_TYPE_MIDI): | elif (portFlags & PATCHBAY_PORT_TYPE_MIDI): | ||||
portType = patchcanvas.PORT_TYPE_MIDI_JACK | portType = patchcanvas.PORT_TYPE_MIDI_JACK | ||||
elif (portFlags & PATCHBAY_PORT_TYPE_PARAMETER): | |||||
portType = patchcanvas.PORT_TYPE_PARAMETER | |||||
else: | else: | ||||
portType = patchcanvas.PORT_TYPE_NULL | portType = patchcanvas.PORT_TYPE_NULL | ||||