summaryrefslogtreecommitdiff
path: root/gtk2_ardour/step_editor.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2018-12-22 14:45:28 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2018-12-22 14:45:44 -0500
commit126def9e1a5ea266613081ff086c3ceccf3f33da (patch)
tree1a382039cacb352d30a94672eabf6016694d8582 /gtk2_ardour/step_editor.h
parentfb1387b740e80cec2ce1e1ed7b97307706367379 (diff)
make StepEntry into a singleton.
More work to follow to clean up the details, and more comments to explain the relationship between StepEntry and StepEditor.
Diffstat (limited to 'gtk2_ardour/step_editor.h')
-rw-r--r--gtk2_ardour/step_editor.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk2_ardour/step_editor.h b/gtk2_ardour/step_editor.h
index 3854f3811d..761ac0125b 100644
--- a/gtk2_ardour/step_editor.h
+++ b/gtk2_ardour/step_editor.h
@@ -78,15 +78,14 @@ private:
PBD::ScopedConnection step_edit_region_connection;
PublicEditor& _editor;
boost::shared_ptr<ARDOUR::MidiTrack> _track;
- StepEntry* step_editor;
MidiTimeAxisView& _mtv;
int8_t last_added_pitch;
Temporal::Beats last_added_end;
void region_removed (boost::weak_ptr<ARDOUR::Region>);
void playlist_changed ();
- bool step_editor_hidden (GdkEventAny*);
- void step_editor_hide ();
+ bool step_entry_hidden (GdkEventAny*);
+ void step_entry_hide ();
void resync_step_edit_position ();
void prepare_step_edit_region ();
};