summaryrefslogtreecommitdiff
path: root/gtk2_ardour/automation_controller.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-02-16 19:34:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-02-16 19:34:11 +0000
commit5f93192aa3a17cfa047f217e7798f50f52be15db (patch)
tree6c89578d36e434e9e051a0f04d32af8b1ebdd22a /gtk2_ardour/automation_controller.h
parentfbbddf78c9441cc717d4294b07d95c1c998cfccd (diff)
fix crash when opening MIDI controller automation tracks, caused by addition of "owner" field to an AutomationController, used to print values. Renamed "owner" to "printer" and required it to be non-null
git-svn-id: svn://localhost/ardour2/branches/3.0@8874 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/automation_controller.h')
-rw-r--r--gtk2_ardour/automation_controller.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/automation_controller.h b/gtk2_ardour/automation_controller.h
index 67def61c35..7d925b6cd8 100644
--- a/gtk2_ardour/automation_controller.h
+++ b/gtk2_ardour/automation_controller.h
@@ -64,7 +64,7 @@ private:
void automation_state_changed();
bool _ignore_change;
- boost::shared_ptr<ARDOUR::Automatable> _owner;
+ boost::shared_ptr<ARDOUR::Automatable> _printer;
boost::shared_ptr<ARDOUR::AutomationControl> _controllable;
Gtk::Adjustment* _adjustment;
sigc::connection _screen_update_connection;