X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fmove_to_dialog.h;h=16267bc9babb3cbaf4831e195f88a849791f5cac;hb=9b85acc342e0cbfc6a9f9533bb7067978bd1294e;hp=4d8d991f51ed209680d47217633c33af7b186e87;hpb=439953204388991b96fce215c62396a7b6d33acd;p=dcpomatic.git diff --git a/src/wx/move_to_dialog.h b/src/wx/move_to_dialog.h index 4d8d991f5..16267bc9b 100644 --- a/src/wx/move_to_dialog.h +++ b/src/wx/move_to_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 Carl Hetherington + Copyright (C) 2016-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,22 +18,24 @@ */ + #include "table_dialog.h" #include "lib/dcpomatic_time.h" -#include #include + class Film; class wxSpinCtrl; + class MoveToDialog : public TableDialog { public: - MoveToDialog (wxWindow* parent, boost::optional position, boost::shared_ptr film); + MoveToDialog (wxWindow* parent, boost::optional position, std::shared_ptr film); - DCPTime position () const; + dcpomatic::DCPTime position () const; private: - boost::weak_ptr _film; + std::weak_ptr _film; wxSpinCtrl* _reel; };