summaryrefslogtreecommitdiff
path: root/gtk2_ardour/imageframe_time_axis_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/imageframe_time_axis_view.h')
-rw-r--r--gtk2_ardour/imageframe_time_axis_view.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/imageframe_time_axis_view.h b/gtk2_ardour/imageframe_time_axis_view.h
index e1d0c6567f..a32f989447 100644
--- a/gtk2_ardour/imageframe_time_axis_view.h
+++ b/gtk2_ardour/imageframe_time_axis_view.h
@@ -93,8 +93,8 @@ class ImageFrameTimeAxisView : public sigc::trackable
*/
int set_position(gdouble x, gdouble y) ;
- int set_frames_per_pixel (double);
- double get_frames_per_pixel () { return _frames_per_pixel; }
+ int set_samples_per_pixel (double);
+ double get_samples_per_pixel () { return _samples_per_pixel; }
/**
* Sets the color of the items contained uopn this view helper
@@ -223,7 +223,7 @@ class ImageFrameTimeAxisView : public sigc::trackable
/**
* convenience method to re-get the samples per unit and tell items upon this view
*/
- void reset_frames_per_pixel ();
+ void reset_samples_per_pixel ();
/**
* The list of ImageFrameViews held by this view helper */
@@ -248,7 +248,7 @@ class ImageFrameTimeAxisView : public sigc::trackable
ArdourCanvas::Rectangle canvas_rect; /* frame around the whole thing */
/** the current frames per pixel */
- double _frames_per_pixel;
+ double _samples_per_pixel;
/* XXX why are these different? */
Gdk::Color region_color ;