summaryrefslogtreecommitdiff
path: root/libs/ardour/session.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-08-25 17:31:49 +0000
committerCarl Hetherington <carl@carlh.net>2010-08-25 17:31:49 +0000
commit803f3a6a307bea4bdd804041a0e0a846f48938ee (patch)
treef1b4e9039265f2e9cb4708b741c2c9af9351983f /libs/ardour/session.cc
parentfde848282d43db6f7b337a959b5268236d377404 (diff)
Small cleanups.
git-svn-id: svn://localhost/ardour2/branches/3.0@7683 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session.cc')
-rw-r--r--libs/ardour/session.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index bfbe1f1312..ee475c0f32 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -3960,26 +3960,6 @@ Session::goto_start ()
}
}
-void
-Session::set_session_start (nframes_t start)
-{
- if (_session_range_location) {
- _session_range_location->set_start (start);
- } else {
- add_session_range_location (start, start);
- }
-}
-
-void
-Session::set_session_end (nframes_t end)
-{
- if (_session_range_location) {
- _session_range_location->set_end (end);
- } else {
- add_session_range_location (end, end);
- }
-}
-
nframes_t
Session::current_start_frame () const
{