X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic_kdm.cc;h=874573ce282582d0cc82fcf118f901d12d9f942e;hb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;hp=1d72af4d556d2625b2067efd81d552e87f6a3f7a;hpb=bd7f4bbde17d2087ba4c4bddf6439b3df869b1db;p=dcpomatic.git diff --git a/src/tools/dcpomatic_kdm.cc b/src/tools/dcpomatic_kdm.cc index 1d72af4d5..874573ce2 100644 --- a/src/tools/dcpomatic_kdm.cc +++ b/src/tools/dcpomatic_kdm.cc @@ -71,11 +71,11 @@ using std::string; using std::vector; using std::pair; using std::map; -using boost::shared_ptr; +using std::shared_ptr; using boost::bind; using boost::optional; using boost::ref; -using boost::dynamic_pointer_cast; +using std::dynamic_pointer_cast; #if BOOST_VERSION >= 106100 using namespace boost::placeholders; #endif @@ -308,7 +308,7 @@ private: list kdms; string title; - shared_ptr dkdm = boost::dynamic_pointer_cast (dkdm_base); + shared_ptr dkdm = std::dynamic_pointer_cast (dkdm_base); if (dkdm) { /* Decrypt the DKDM */ @@ -596,7 +596,7 @@ private: ScreensPanel* _screens; KDMTimingPanel* _timing; wxTreeCtrl* _dkdm; - typedef std::map > DKDMMap; + typedef std::map > DKDMMap; DKDMMap _dkdm_id; wxButton* _add_dkdm; wxButton* _add_dkdm_folder;