From 36ee666c27364dc4edc5ca3b86d92ae6ed8bdf37 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 12 Mar 2014 01:52:43 +0000 Subject: [PATCH] Remove PATCHBAY_PORT_TYPE_PARAMETER flag --- source/backend/CarlaBackend.h | 5 ----- source/carla_backend.py | 3 --- source/carla_patchbay.py | 2 -- 3 files changed, 10 deletions(-) diff --git a/source/backend/CarlaBackend.h b/source/backend/CarlaBackend.h index ed49ac15c..c48c57fb2 100644 --- a/source/backend/CarlaBackend.h +++ b/source/backend/CarlaBackend.h @@ -327,11 +327,6 @@ const unsigned int PATCHBAY_PORT_TYPE_CV = 0x4; */ const unsigned int PATCHBAY_PORT_TYPE_MIDI = 0x8; -/*! - * Patchbay port is of Parameter type. - */ -const unsigned int PATCHBAY_PORT_TYPE_PARAMETER = 0x10; - /** @} */ /* ------------------------------------------------------------------------------------------------------------ diff --git a/source/carla_backend.py b/source/carla_backend.py index 11e6d00d5..61e4fb172 100644 --- a/source/carla_backend.py +++ b/source/carla_backend.py @@ -311,9 +311,6 @@ PATCHBAY_PORT_TYPE_CV = 0x4 # Patchbay port is of MIDI type. PATCHBAY_PORT_TYPE_MIDI = 0x8 -# Patchbay port is of Parameter type. -PATCHBAY_PORT_TYPE_PARAMETER = 0x10 - # ------------------------------------------------------------------------------------------------------------ # Custom Data Types # These types define how the value in the CustomData struct is stored. diff --git a/source/carla_patchbay.py b/source/carla_patchbay.py index 2bd9e4b17..7b61d90dd 100644 --- a/source/carla_patchbay.py +++ b/source/carla_patchbay.py @@ -955,8 +955,6 @@ class CarlaPatchbayW(QFrame): portType = patchcanvas.PORT_TYPE_AUDIO_JACK elif (portFlags & PATCHBAY_PORT_TYPE_MIDI): portType = patchcanvas.PORT_TYPE_MIDI_JACK - elif (portFlags & PATCHBAY_PORT_TYPE_PARAMETER): - portType = patchcanvas.PORT_TYPE_PARAMETER else: portType = patchcanvas.PORT_TYPE_NULL