summaryrefslogtreecommitdiff
path: root/libs/ardour/location_importer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-12-01 17:42:18 +0000
committerCarl Hetherington <carl@carlh.net>2010-12-01 17:42:18 +0000
commitf500846fd46d6eab97e5e02fd795b9a938464773 (patch)
treef21c64641b8067a9bc7a8f2b4d38a97f1bc05ea6 /libs/ardour/location_importer.cc
parent93d65777b80627411fde1a8b7e391633a936dd8c (diff)
Remove unused timecode offset stuff.
git-svn-id: svn://localhost/ardour2/branches/3.0@8143 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/location_importer.cc')
-rw-r--r--libs/ardour/location_importer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/location_importer.cc b/libs/ardour/location_importer.cc
index 1674616096..eda636ef71 100644
--- a/libs/ardour/location_importer.cc
+++ b/libs/ardour/location_importer.cc
@@ -114,8 +114,8 @@ LocationImporter::get_info () const
iss_end >> end;
// Convert to timecode
- session.sample_to_timecode (start, start_time, true, false);
- session.sample_to_timecode (end, end_time, true, false);
+ session.sample_to_timecode (start, start_time, false);
+ session.sample_to_timecode (end, end_time, false);
// return info
std::ostringstream oss;