mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
Remove unused code.
git-svn-id: svn://localhost/ardour2/branches/3.0@8984 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
5c2c0b3f75
commit
60f48d24f4
2 changed files with 0 additions and 15 deletions
|
|
@ -204,13 +204,6 @@ MidiGhostRegion::Note::~Note()
|
||||||
//delete rect;
|
//delete rect;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
MidiGhostRegion::Note::x_changed()
|
|
||||||
{
|
|
||||||
rect->property_x1() = event->x1();
|
|
||||||
rect->property_x2() = event->x2();
|
|
||||||
}
|
|
||||||
|
|
||||||
MidiGhostRegion::Hit::Hit(ArdourCanvas::CanvasHit* h, ArdourCanvas::Group*)
|
MidiGhostRegion::Hit::Hit(ArdourCanvas::CanvasHit* h, ArdourCanvas::Group*)
|
||||||
: Event(h)
|
: Event(h)
|
||||||
{
|
{
|
||||||
|
|
@ -221,11 +214,6 @@ MidiGhostRegion::Hit::~Hit()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
MidiGhostRegion::Hit::x_changed()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
MidiGhostRegion::set_samples_per_unit (double /*spu*/)
|
MidiGhostRegion::set_samples_per_unit (double /*spu*/)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,6 @@ public:
|
||||||
Event(ArdourCanvas::CanvasNoteEvent*);
|
Event(ArdourCanvas::CanvasNoteEvent*);
|
||||||
virtual ~Event() {}
|
virtual ~Event() {}
|
||||||
|
|
||||||
virtual void x_changed() = 0;
|
|
||||||
ArdourCanvas::CanvasNoteEvent* event;
|
ArdourCanvas::CanvasNoteEvent* event;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -89,7 +88,6 @@ public:
|
||||||
Note(ArdourCanvas::CanvasNote*, ArdourCanvas::Group*);
|
Note(ArdourCanvas::CanvasNote*, ArdourCanvas::Group*);
|
||||||
~Note();
|
~Note();
|
||||||
|
|
||||||
void x_changed();
|
|
||||||
ArdourCanvas::SimpleRect* rect;
|
ArdourCanvas::SimpleRect* rect;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -98,7 +96,6 @@ public:
|
||||||
Hit(ArdourCanvas::CanvasHit*, ArdourCanvas::Group*);
|
Hit(ArdourCanvas::CanvasHit*, ArdourCanvas::Group*);
|
||||||
~Hit();
|
~Hit();
|
||||||
|
|
||||||
void x_changed();
|
|
||||||
ArdourCanvas::Diamond* diamond;
|
ArdourCanvas::Diamond* diamond;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue