X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fscreens_panel.cc;h=df07a08c4fd4b523ebae17e5a5df656110cd1935;hp=0638763fe364ce0743b05320d070819ad8674be4;hb=5a5324ed3a381a86dfe0a6e3932c1d58fdcd596f;hpb=4e83acad0c2a5c528709a175a80261b8147d3b49 diff --git a/src/wx/screens_panel.cc b/src/wx/screens_panel.cc index 0638763fe..df07a08c4 100644 --- a/src/wx/screens_panel.cc +++ b/src/wx/screens_panel.cc @@ -26,6 +26,7 @@ #include "cinema_dialog.h" #include "screen_dialog.h" #include +#include using std::list; using std::pair; @@ -34,6 +35,7 @@ using std::map; using std::string; using std::make_pair; using boost::shared_ptr; +using boost::make_shared; using boost::optional; ScreensPanel::ScreensPanel (wxWindow* parent) @@ -149,7 +151,7 @@ ScreensPanel::add_cinema_clicked () { CinemaDialog* d = new CinemaDialog (this, _("Add Cinema")); if (d->ShowModal () == wxID_OK) { - shared_ptr c (new Cinema (d->name(), d->emails(), d->notes(), d->utc_offset_hour(), d->utc_offset_minute())); + shared_ptr c = boost::make_shared (d->name(), d->emails(), d->notes(), d->utc_offset_hour(), d->utc_offset_minute()); Config::instance()->add_cinema (c); add_cinema (c); } @@ -208,7 +210,7 @@ ScreensPanel::add_screen_clicked () return; } - shared_ptr s (new Screen (d->name(), d->recipient(), d->trusted_devices())); + shared_ptr s = boost::make_shared (d->name(), d->recipient(), d->trusted_devices()); c->add_screen (s); optional id = add_screen (c, s); if (id) {