X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fpaste_dialog.h;h=1f447d3f87a92665f5c594701bcae40ef50b14bc;hb=a1f95f87b8254760d7151ba3928cf1071afcc884;hp=204f421d80d4dbad700e9fec3c32a4a846f1cdfe;hpb=d26296467bbf6bd1b2300dd862ce55fcd7f3d624;p=dcpomatic.git diff --git a/src/wx/paste_dialog.h b/src/wx/paste_dialog.h index 204f421d8..1f447d3f8 100644 --- a/src/wx/paste_dialog.h +++ b/src/wx/paste_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2018 Carl Hetherington + Copyright (C) 2018-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,19 +18,21 @@ */ + #include "table_dialog.h" + class PasteDialog : public TableDialog { public: - PasteDialog (wxWindow* parent, bool video, bool audio, bool subtitle); + PasteDialog (wxWindow* parent, bool video, bool audio, bool text); bool video () const; bool audio () const; - bool subtitle () const; + bool text () const; private: wxCheckBox* _video; wxCheckBox* _audio; - wxCheckBox* _subtitle; + wxCheckBox* _text; };