mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +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);
|
std::shared_ptr<SysEx> sysex = find_canvas_sys_ex (sysex_ptr);
|
||||||
|
|
||||||
if (!sysex) {
|
if (!sysex) {
|
||||||
sysex = std::shared_ptr<SysEx>(
|
sysex = std::shared_ptr<SysEx>(new SysEx (_note_group, text, height, x, 1.0, sysex_ptr));
|
||||||
new SysEx (*this, group, text, height, x, 1.0, sysex_ptr));
|
|
||||||
_sys_exes.insert (make_pair (sysex_ptr, sysex));
|
_sys_exes.insert (make_pair (sysex_ptr, sysex));
|
||||||
} else {
|
} else {
|
||||||
sysex->set_height (height);
|
sysex->set_height (height);
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,6 @@
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
SysEx::SysEx (
|
SysEx::SysEx (
|
||||||
MidiRegionView& region,
|
|
||||||
ArdourCanvas::Container* parent,
|
ArdourCanvas::Container* parent,
|
||||||
string& text,
|
string& text,
|
||||||
double height,
|
double height,
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@ class SysEx
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SysEx (
|
SysEx (
|
||||||
MidiRegionView& region,
|
|
||||||
ArdourCanvas::Container* parent,
|
ArdourCanvas::Container* parent,
|
||||||
std::string& text,
|
std::string& text,
|
||||||
double height,
|
double height,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue