summaryrefslogtreecommitdiff
path: root/src/wx/timeline.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/wx/timeline.cc
parentdfce73ef2de0d912507a0d7819f8b469202852f5 (diff)
No-op; variable renaming.
Diffstat (limited to 'src/wx/timeline.cc')
-rw-r--r--src/wx/timeline.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc
index 3929cf1c2..8c8692aa1 100644
--- a/src/wx/timeline.cc
+++ b/src/wx/timeline.cc
@@ -101,15 +101,15 @@ Timeline::film_changed (Film::Property p)
void
Timeline::recreate_views ()
{
- shared_ptr<const Film> fl = _film.lock ();
- if (!fl) {
+ shared_ptr<const Film> film = _film.lock ();
+ if (!film) {
return;
}
_views.clear ();
_views.push_back (_time_axis_view);
- ContentList content = fl->content ();
+ ContentList content = film->content ();
for (ContentList::iterator i = content.begin(); i != content.end(); ++i) {
if (dynamic_pointer_cast<VideoContent> (*i)) {