summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ghostregion.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-04-12 11:31:50 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-04-12 11:31:50 -0400
commitb05968fb4e303ce47b6e09cd1bc713f3af28a6f9 (patch)
tree7e4a86c49d608febc893eeb907c75450ae7cff65 /gtk2_ardour/ghostregion.cc
parente5a3747686e3f2ef5dd0f1549848c3021513724c (diff)
change frames_per_pixel to samples_per_pixel
Diffstat (limited to 'gtk2_ardour/ghostregion.cc')
-rw-r--r--gtk2_ardour/ghostregion.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/ghostregion.cc b/gtk2_ardour/ghostregion.cc
index caab67ef44..f881efa8d2 100644
--- a/gtk2_ardour/ghostregion.cc
+++ b/gtk2_ardour/ghostregion.cc
@@ -108,10 +108,10 @@ AudioGhostRegion::AudioGhostRegion(TimeAxisView& tv, TimeAxisView& source_tv, do
}
void
-AudioGhostRegion::set_frames_per_pixel (double fpp)
+AudioGhostRegion::set_samples_per_pixel (double fpp)
{
for (vector<WaveView*>::iterator i = waves.begin(); i != waves.end(); ++i) {
- (*i)->set_frames_per_pixel (fpp);
+ (*i)->set_samples_per_pixel (fpp);
}
}
@@ -200,7 +200,7 @@ MidiGhostRegion::GhostEvent::~GhostEvent ()
}
void
-MidiGhostRegion::set_frames_per_pixel (double /*spu*/)
+MidiGhostRegion::set_samples_per_pixel (double /*spu*/)
{
}