diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-01-08 16:25:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-01-09 11:54:16 +0100 |
| commit | 12d1abf033654727d6ab6278087ff7cfc65d63f6 (patch) | |
| tree | b920b3c3614fc91a1cb2a220972042e6318a6fd4 /src/wx/content_panel.cc | |
| parent | ad41d2dd987ffcd2068d9fbf4273108c9f796762 (diff) | |
Move ScopeGuard into libdcp.
Diffstat (limited to 'src/wx/content_panel.cc')
| -rw-r--r-- | src/wx/content_panel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index 8a98bc1a4..1f54ae0cf 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -47,12 +47,12 @@ #include "lib/image_content.h" #include "lib/log.h" #include "lib/playlist.h" -#include "lib/scope_guard.h" #include "lib/string_text_file.h" #include "lib/string_text_file_content.h" #include "lib/text_content.h" #include "lib/video_content.h" #include <dcp/filesystem.h> +#include <dcp/scope_guard.h> #include <dcp/warnings.h> LIBDCP_DISABLE_WARNINGS #include <wx/display.h> @@ -820,7 +820,7 @@ ContentPanel::set_selection (ContentList cl) { { _no_check_selection = true; - ScopeGuard sg = [this]() { _no_check_selection = false; }; + dcp::ScopeGuard sg = [this]() { _no_check_selection = false; }; auto content = _film->content (); for (size_t i = 0; i < content.size(); ++i) { |
