summaryrefslogtreecommitdiff
path: root/libs/ardour/event_type_map.cc
diff options
context:
space:
mode:
authorHans Baier <hansfbaier@googlemail.com>2009-01-21 10:20:27 +0000
committerHans Baier <hansfbaier@googlemail.com>2009-01-21 10:20:27 +0000
commit5309c327ec96de33838e45ddb1489a632c2a4c68 (patch)
tree78cbc9083966e2a42cb8d6a15b0053e6681e9572 /libs/ardour/event_type_map.cc
parent33852a0728d081864b83e74e900802be7ab6f2aa (diff)
* make MIDI-specific menu show up on all MIDI lanes
* style guide, comments and a little refactoring (remove duplication) git-svn-id: svn://localhost/ardour2/branches/3.0@4422 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/event_type_map.cc')
-rw-r--r--libs/ardour/event_type_map.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/ardour/event_type_map.cc b/libs/ardour/event_type_map.cc
index 39c2e3d6eb..a4d8317a42 100644
--- a/libs/ardour/event_type_map.cc
+++ b/libs/ardour/event_type_map.cc
@@ -38,6 +38,12 @@ EventTypeMap::type_is_midi(uint32_t type) const
return (type >= MidiCCAutomation) && (type <= MidiChannelPressureAutomation);
}
+bool
+EventTypeMap::is_midi_parameter(const Evoral::Parameter& param)
+{
+ return type_is_midi(param.type());
+}
+
uint8_t
EventTypeMap::parameter_midi_type(const Evoral::Parameter& param) const
{