summaryrefslogtreecommitdiff
path: root/gtk2_ardour/marker_view.cc
diff options
context:
space:
mode:
authorNick Mainsbridge <beatroute@iprimus.com.au>2005-11-23 17:21:12 +0000
committerNick Mainsbridge <beatroute@iprimus.com.au>2005-11-23 17:21:12 +0000
commit54a80321064aa543023cd0b224ba9d433520983f (patch)
treef865a7fe2269054f4215e3bbaa477cd9f091e813 /gtk2_ardour/marker_view.cc
parentfb45ffea71d345ced0cfbb12b9dcd89ecb1e8dbf (diff)
Gnome::Canvas -> ArdourCanvas and some other small fixes
git-svn-id: svn://localhost/trunk/ardour2@107 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/marker_view.cc')
-rw-r--r--gtk2_ardour/marker_view.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/marker_view.cc b/gtk2_ardour/marker_view.cc
index f65c9431ca..8ccc3d8c12 100644
--- a/gtk2_ardour/marker_view.cc
+++ b/gtk2_ardour/marker_view.cc
@@ -47,7 +47,7 @@ sigc::signal<void,MarkerView*> MarkerView::GoingAway;
* @param start the start time of this item
* @param duration the duration of this item
*/
-MarkerView::MarkerView(Gnome::Canvas::Group *parent,
+MarkerView::MarkerView(ArdourCanvas::Group *parent,
TimeAxisView* tv,
ImageFrameView* marked,
double spu,
@@ -56,7 +56,7 @@ MarkerView::MarkerView(Gnome::Canvas::Group *parent,
std::string mark_id,
jack_nframes_t start,
jack_nframes_t duration)
- : TimeAxisViewItem(mark_id, parent,*tv,spu,basic_color,start,duration)
+ : TimeAxisViewItem(mark_id, *parent,*tv,spu,basic_color,start,duration)
{
mark_type_text = mark_type ;
marked_item = marked ;