X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fmove_to_dialog.h;h=16267bc9babb3cbaf4831e195f88a849791f5cac;hb=3c29aa6531a4046a8db72dcac81189eb8893233c;hp=3c6f3d064d4610f926f1f64ec7cffd44ccc07377;hpb=c4403784febdbdd42e9c32e67fadb147f11fe566;p=dcpomatic.git diff --git a/src/wx/move_to_dialog.h b/src/wx/move_to_dialog.h index 3c6f3d064..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); dcpomatic::DCPTime position () const; private: - boost::weak_ptr _film; + std::weak_ptr _film; wxSpinCtrl* _reel; };