summaryrefslogtreecommitdiff
path: root/gtk2_ardour/public_editor.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/public_editor.h')
-rw-r--r--gtk2_ardour/public_editor.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/public_editor.h b/gtk2_ardour/public_editor.h
index 03d5897c1a..f32c0565e3 100644
--- a/gtk2_ardour/public_editor.h
+++ b/gtk2_ardour/public_editor.h
@@ -185,11 +185,11 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
virtual void toggle_playback (bool with_abort) = 0;
virtual void transition_to_rolling (bool fwd) = 0;
- virtual nframes_t unit_to_frame (double unit) = 0;
- virtual double frame_to_unit (nframes_t frame) = 0;
- virtual double frame_to_unit (double frame) = 0;
- virtual nframes_t pixel_to_frame (double pixel) = 0;
- virtual gulong frame_to_pixel (nframes_t frame) = 0;
+ virtual nframes_t unit_to_frame (double unit) const = 0;
+ virtual double frame_to_unit (nframes_t frame) const = 0;
+ virtual double frame_to_unit (double frame) const = 0;
+ virtual nframes64_t pixel_to_frame (double pixel) const = 0;
+ virtual gulong frame_to_pixel (nframes64_t frame) const = 0;
virtual Selection& get_selection () const = 0;
virtual Selection& get_cut_buffer () const = 0;
virtual bool extend_selection_to_track (TimeAxisView&) = 0;