summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ghostregion.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-17 22:15:56 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-17 22:15:56 +0000
commit1e185b54f5bffbf855ca64339cefa6266455e478 (patch)
tree0c3b1b6ce0ea919aa3276868643c17e1806cd900 /gtk2_ardour/ghostregion.h
parentfecf120f1e778f1a2344e0adcaf3aed0b0c4e5e3 (diff)
Concatenate MidiGhostRegion::Note and MidiGhostRegion::Event.
git-svn-id: svn://localhost/ardour2/branches/3.0@10660 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ghostregion.h')
-rw-r--r--gtk2_ardour/ghostregion.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/gtk2_ardour/ghostregion.h b/gtk2_ardour/ghostregion.h
index 50924619ff..083f71b3e2 100644
--- a/gtk2_ardour/ghostregion.h
+++ b/gtk2_ardour/ghostregion.h
@@ -77,17 +77,10 @@ class MidiGhostRegion : public GhostRegion {
public:
class Event : public sigc::trackable {
public:
- Event(ArdourCanvas::CanvasNoteEvent*);
- virtual ~Event() {}
+ Event(ArdourCanvas::CanvasNoteEvent *, ArdourCanvas::Group *);
+ ~Event ();
ArdourCanvas::CanvasNoteEvent* event;
- };
-
- class Note : public Event {
- public:
- Note(ArdourCanvas::CanvasNote*, ArdourCanvas::Group*);
- ~Note();
-
ArdourCanvas::SimpleRect* rect;
};