summaryrefslogtreecommitdiff
path: root/gtk2_ardour/midi_time_axis.cc
diff options
context:
space:
mode:
authorHans Baier <hansfbaier@googlemail.com>2008-12-08 09:50:19 +0000
committerHans Baier <hansfbaier@googlemail.com>2008-12-08 09:50:19 +0000
commita9bb336fc44ab4937978f5a0308e440ed632ea50 (patch)
tree174529b93d0c48e87e5dc12499221152fbc68f36 /gtk2_ardour/midi_time_axis.cc
parent6974dbdcd273368fc3b51e45807d65e7d89eebed (diff)
* first primitive implementation of MidiPatchManager
* some cosmetic changes * added midi_patch_path() to libs/ardour/ardour/session_directory.h git-svn-id: svn://localhost/ardour2/branches/3.0@4299 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/midi_time_axis.cc')
-rw-r--r--gtk2_ardour/midi_time_axis.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/midi_time_axis.cc b/gtk2_ardour/midi_time_axis.cc
index 9453a05611..01505ad303 100644
--- a/gtk2_ardour/midi_time_axis.cc
+++ b/gtk2_ardour/midi_time_axis.cc
@@ -141,9 +141,9 @@ MidiTimeAxisView::MidiTimeAxisView (PublicEditor& ed, Session& sess, boost::shar
}
// add channel selector expander
- HBox *channel_selector_box = manage(new HBox());
- channel_selector_box->pack_start(_channel_selector, false, false);
- _midi_expander.add(*channel_selector_box);
+ HBox *midi_expander_box = manage(new HBox());
+ midi_expander_box->pack_start(_channel_selector, false, false);
+ _midi_expander.add(*midi_expander_box);
_midi_expander.property_expanded().signal_changed().connect(
mem_fun(this, &MidiTimeAxisView::channel_selector_toggled));
controls_vbox.pack_start(_midi_expander, false, false);