summaryrefslogtreecommitdiff
path: root/gtk2_ardour/public_editor.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-07-23 13:23:47 +0200
committerRobin Gareus <robin@gareus.org>2015-07-23 17:58:40 +0200
commite1f168de110322e7024dfa334b97f3b433907ae1 (patch)
treebd700545929b7aa5ec95c69b88a5a4e983845547 /gtk2_ardour/public_editor.h
parent2cc64168d379790eb3d162cd59b7f1a8effb4156 (diff)
rename Marker class
Classes are in the global namespace. OSX has a flat namespace and OSX32bit/Carbon has a Marker too.
Diffstat (limited to 'gtk2_ardour/public_editor.h')
-rw-r--r--gtk2_ardour/public_editor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/public_editor.h b/gtk2_ardour/public_editor.h
index b5d139b543..63778dfaec 100644
--- a/gtk2_ardour/public_editor.h
+++ b/gtk2_ardour/public_editor.h
@@ -71,7 +71,7 @@ class AutomationTimeAxisView;
class ControlPoint;
class DragManager;
class Editor;
-class Marker;
+class ArdourMarker;
class MeterMarker;
class MouseCursors;
class PlaylistSelector;
@@ -346,7 +346,7 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulDestructible, publi
virtual bool canvas_region_view_name_event (GdkEvent* event, ArdourCanvas::Item*, RegionView*) = 0;
virtual bool canvas_feature_line_event (GdkEvent* event, ArdourCanvas::Item*, RegionView*) = 0;
virtual bool canvas_stream_view_event (GdkEvent* event, ArdourCanvas::Item*, RouteTimeAxisView*) = 0;
- virtual bool canvas_marker_event (GdkEvent* event, ArdourCanvas::Item*, Marker*) = 0;
+ virtual bool canvas_marker_event (GdkEvent* event, ArdourCanvas::Item*, ArdourMarker*) = 0;
virtual bool canvas_videotl_bar_event (GdkEvent* event, ArdourCanvas::Item*) = 0;
virtual bool canvas_tempo_marker_event (GdkEvent* event, ArdourCanvas::Item*, TempoMarker*) = 0;
virtual bool canvas_meter_marker_event (GdkEvent* event, ArdourCanvas::Item*, MeterMarker*) = 0;
@@ -412,8 +412,8 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulDestructible, publi
virtual void get_pointer_position (double &, double &) const = 0;
- virtual ARDOUR::Location* find_location_from_marker (Marker *, bool &) const = 0;
- virtual Marker* find_marker_from_location_id (PBD::ID const &, bool) const = 0;
+ virtual ARDOUR::Location* find_location_from_marker (ArdourMarker *, bool &) const = 0;
+ virtual ArdourMarker* find_marker_from_location_id (PBD::ID const &, bool) const = 0;
virtual void snap_to_with_modifier (framepos_t & first,
GdkEvent const * ev,