summaryrefslogtreecommitdiff
path: root/libs/ardour/element_importer.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
commitbb9cc45cd22af67ac275a5e73accbe14fee664d8 (patch)
treee52977d3eae6ff07b856088041a080a2fa3e5b79 /libs/ardour/element_importer.cc
parent8c4ce1e2ce35571aed5a686671431fdfffae7f8c (diff)
Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/element_importer.cc')
-rw-r--r--libs/ardour/element_importer.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/element_importer.cc b/libs/ardour/element_importer.cc
index eb6e39d13a..4438985586 100644
--- a/libs/ardour/element_importer.cc
+++ b/libs/ardour/element_importer.cc
@@ -35,7 +35,7 @@ using namespace ARDOUR;
sigc::signal <std::pair<bool, string>, string, string> ElementImporter::Rename;
sigc::signal <bool, string> ElementImporter::Prompt;
-ElementImporter::ElementImporter (XMLTree const & source, ARDOUR::Session & session) :
+ElementImporter::ElementImporter (XMLTree const & source, ARDOUR::Session & session) :
source (source),
session(session),
_queued (false),
@@ -91,7 +91,7 @@ ElementImporter::smpte_to_string(SMPTE::Time & time) const
time.seconds << ":" <<
std::setw(2) <<
time.frames;
-
+
return oss.str();
}
@@ -101,7 +101,7 @@ ElementImporter::rate_convert_samples (nframes_t samples) const
if (sample_rate == session.frame_rate()) {
return samples;
}
-
+
// +0.5 for proper rounding
return static_cast<nframes_t> (samples * (static_cast<double> (session.nominal_frame_rate()) / sample_rate) + 0.5);
}