summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view_item.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-07-09 17:58:13 +0000
committerCarl Hetherington <carl@carlh.net>2009-07-09 17:58:13 +0000
commit402cc384ced6cb152c8abe4294009fe0de0a6dea (patch)
treef01db6b412cb8e2d3c69fa123fd615c229ee47d3 /gtk2_ardour/time_axis_view_item.h
parentcc351b97a986fca48a6b3b631a292bf24efc5e41 (diff)
Back out big shared_ptr change. Moving to a branch. Apologies all.
git-svn-id: svn://localhost/ardour2/branches/3.0@5343 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/time_axis_view_item.h')
-rw-r--r--gtk2_ardour/time_axis_view_item.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gtk2_ardour/time_axis_view_item.h b/gtk2_ardour/time_axis_view_item.h
index 4425313cba..97e7a73745 100644
--- a/gtk2_ardour/time_axis_view_item.h
+++ b/gtk2_ardour/time_axis_view_item.h
@@ -28,7 +28,6 @@
#include "selectable.h"
#include "simplerect.h"
#include "canvas.h"
-#include "shared_ptrs.h"
class TimeAxisView;
@@ -189,7 +188,7 @@ class TimeAxisViewItem : public Selectable
*
* @return the timeAxisView that this item is placed upon
*/
- TimeAxisViewPtr get_time_axis_view() ;
+ TimeAxisView& get_time_axis_view() ;
//---------------------------------------------------------------------------------------//
// ui methods & data
@@ -240,7 +239,7 @@ class TimeAxisViewItem : public Selectable
/**
* Returns the time axis that this item is upon
*/
- TimeAxisViewPtr get_trackview() const { return trackview; }
+ TimeAxisView& get_trackview() const { return trackview; }
/**
* Sets the samples per unit of this item.
@@ -342,7 +341,7 @@ class TimeAxisViewItem : public Selectable
* @param start the start point of this item
* @param duration the duration of this item
*/
- TimeAxisViewItem(const std::string & it_name, ArdourCanvas::Group& parent, TimeAxisViewPtr tv, double spu, Gdk::Color const & base_color,
+ TimeAxisViewItem(const std::string & it_name, ArdourCanvas::Group& parent, TimeAxisView& tv, double spu, Gdk::Color const & base_color,
nframes_t start, nframes_t duration, bool recording = false, Visibility v = Visibility (0));
TimeAxisViewItem (const TimeAxisViewItem& other);
@@ -386,7 +385,7 @@ class TimeAxisViewItem : public Selectable
static gint idle_remove_this_item(TimeAxisViewItem* item, void* src) ;
/** The time axis that this item is upon */
- TimeAxisViewPtr trackview ;
+ TimeAxisView& trackview ;
/** indicates whether this item is locked to its current position */
bool position_locked ;