summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-04-10 23:46:31 +0100
committerCarl Hetherington <cth@carlh.net>2013-04-10 23:46:31 +0100
commit4461bdec05261dfc9cdd7639dad13c6ced4cbc35 (patch)
tree27ee9858447a4a7fd7c4d96abb4f7c6064b14ba9 /src
parent4dee3db5222be7972930dbc621e9ab15a81d33d2 (diff)
Fix thinko.
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_editor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index c03a13bfe..f960abcfa 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -842,7 +842,7 @@ FilmEditor::dcp_content_type_changed (wxCommandEvent &)
void
FilmEditor::set_film (shared_ptr<Film> f)
{
- set_things_sensitive (_film != 0);
+ set_things_sensitive (f != 0);
if (_film == f) {
return;