mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
removed unused MidiRegionView argument from SysEx (visual) constructor
This commit is contained in:
parent
e67e6aa363
commit
9d7a87083a
3 changed files with 1 additions and 4 deletions
|
|
@ -1555,8 +1555,7 @@ MidiRegionView::display_sysexes()
|
|||
std::shared_ptr<SysEx> sysex = find_canvas_sys_ex (sysex_ptr);
|
||||
|
||||
if (!sysex) {
|
||||
sysex = std::shared_ptr<SysEx>(
|
||||
new SysEx (*this, group, text, height, x, 1.0, sysex_ptr));
|
||||
sysex = std::shared_ptr<SysEx>(new SysEx (_note_group, text, height, x, 1.0, sysex_ptr));
|
||||
_sys_exes.insert (make_pair (sysex_ptr, sysex));
|
||||
} else {
|
||||
sysex->set_height (height);
|
||||
|
|
|
|||
|
|
@ -30,7 +30,6 @@
|
|||
using namespace std;
|
||||
|
||||
SysEx::SysEx (
|
||||
MidiRegionView& region,
|
||||
ArdourCanvas::Container* parent,
|
||||
string& text,
|
||||
double height,
|
||||
|
|
|
|||
|
|
@ -27,7 +27,6 @@ class SysEx
|
|||
{
|
||||
public:
|
||||
SysEx (
|
||||
MidiRegionView& region,
|
||||
ArdourCanvas::Container* parent,
|
||||
std::string& text,
|
||||
double height,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue