summaryrefslogtreecommitdiff
path: root/gtk2_ardour/region_view.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2008-12-18 17:46:28 +0000
committerCarl Hetherington <carl@carlh.net>2008-12-18 17:46:28 +0000
commit883eeb8cf2c717bc0fd121882b484897742f7f28 (patch)
treece39523da16319dc917fdf4a5f5d964b499f4006 /gtk2_ardour/region_view.h
parent058e7f2c0198a1e4036dd0b4de89cf815a0c1e68 (diff)
Implement #826: edit-click on automation points allows value edit.
git-svn-id: svn://localhost/ardour2/branches/3.0@4329 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/region_view.h')
-rw-r--r--gtk2_ardour/region_view.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/region_view.h b/gtk2_ardour/region_view.h
index 987b2d66a9..b9258396d9 100644
--- a/gtk2_ardour/region_view.h
+++ b/gtk2_ardour/region_view.h
@@ -130,7 +130,7 @@ class RegionView : public TimeAxisViewItem
RegionEditor* editor;
- vector<ControlPoint *> control_points;
+ std::vector<ControlPoint *> control_points;
double current_visible_sync_position;
bool valid; ///< see StreamView::redisplay_diskstream()
@@ -142,7 +142,7 @@ class RegionView : public TimeAxisViewItem
bool wait_for_data;
sigc::connection data_ready_connection;
- vector<GhostRegion*> ghosts;
+ std::vector<GhostRegion*> ghosts;
typedef std::map<const Evoral::Parameter, boost::shared_ptr<AutomationRegionView> > AutomationChildren;
AutomationChildren _automation_children;