diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-12-28 15:00:38 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-12-28 15:00:38 +0000 |
| commit | af3e8ed8382cdc35e361cdca1f735a379fce1317 (patch) | |
| tree | f8d205c6049251dd0d9db90ef78c146a0c101112 /src/wx/content_menu.cc | |
| parent | 15f8567ed4e9aad1f12d3242a090a0f44e24932f (diff) | |
Remove unused Film::content_paths_valid; fix ImageDecoder to throw an OpenFileError when a file is missing so that it gets treated as missing content; rename Content::path_valid -> paths_valid.
Diffstat (limited to 'src/wx/content_menu.cc')
| -rw-r--r-- | src/wx/content_menu.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc index 254109eb3..6372503d1 100644 --- a/src/wx/content_menu.cc +++ b/src/wx/content_menu.cc @@ -80,7 +80,7 @@ ContentMenu::popup (ContentList c, wxPoint p) _join->Enable (n > 1); - _find_missing->Enable (_content.size() == 1 && !_content.front()->path_valid ()); + _find_missing->Enable (_content.size() == 1 && !_content.front()->paths_valid ()); _remove->Enable (!_content.empty ()); _parent->PopupMenu (_menu, p); } |
