summaryrefslogtreecommitdiff
path: root/src/lib/sndfile_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-19 09:25:33 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-19 09:25:33 +0100
commit53eea12d3e0d7925d5949de92859bc358ee0adcc (patch)
treeaf933c37720c0c68f4911b73fb22e289da990682 /src/lib/sndfile_content.cc
parentdfce73ef2de0d912507a0d7819f8b469202852f5 (diff)
No-op; variable renaming.
Diffstat (limited to 'src/lib/sndfile_content.cc')
-rw-r--r--src/lib/sndfile_content.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/sndfile_content.cc b/src/lib/sndfile_content.cc
index cfee7bd38..6d3ee18f5 100644
--- a/src/lib/sndfile_content.cc
+++ b/src/lib/sndfile_content.cc
@@ -34,16 +34,16 @@ using std::string;
using std::cout;
using boost::shared_ptr;
-SndfileContent::SndfileContent (shared_ptr<const Film> f, boost::filesystem::path p)
- : Content (f, p)
- , SingleStreamAudioContent (f, p)
+SndfileContent::SndfileContent (shared_ptr<const Film> film, boost::filesystem::path p)
+ : Content (film, p)
+ , SingleStreamAudioContent (film, p)
{
}
-SndfileContent::SndfileContent (shared_ptr<const Film> f, cxml::ConstNodePtr node, int version)
- : Content (f, node)
- , SingleStreamAudioContent (f, node, version)
+SndfileContent::SndfileContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
+ : Content (film, node)
+ , SingleStreamAudioContent (film, node, version)
, _audio_length (node->number_child<int64_t> ("AudioLength"))
{