diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-24 22:13:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-24 22:13:53 +0100 |
| commit | 63ea6b6c5ee64f8ee067c2b488d004b6dfe363e0 (patch) | |
| tree | d248762556466fd076cfd20f2e6aa1d5d9544184 /src/lib/make_dcp_job.cc | |
| parent | 977b36672892b14de4ecb68e98415c64946e8a93 (diff) | |
Use boost::signals2; fix bugs with x-thread signalling.
Diffstat (limited to 'src/lib/make_dcp_job.cc')
| -rw-r--r-- | src/lib/make_dcp_job.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/make_dcp_job.cc b/src/lib/make_dcp_job.cc index 5a16abc1e..e2c90a854 100644 --- a/src/lib/make_dcp_job.cc +++ b/src/lib/make_dcp_job.cc @@ -36,8 +36,8 @@ extern "C" { #include "imagemagick_decoder.h" #include "film.h" -using namespace std; -using namespace boost; +using std::string; +using boost::shared_ptr; /** @param f Film we are making the DCP for. * @param o Options. @@ -73,7 +73,7 @@ MakeDCPJob::run () string const dcp_path = _film->dir (_film->dcp_name()); /* Remove any old DCP */ - filesystem::remove_all (dcp_path); + boost::filesystem::remove_all (dcp_path); int frames = 0; switch (_film->content_type ()) { |
