Stop invalid dates causing boost::posix_time to raise exceptions.
[dcpomatic.git] / src / wx / paste_dialog.h
index 204f421d80d4dbad700e9fec3c32a4a846f1cdfe..792195947274288c48881daab79398dd4a91a0c4 100644 (file)
 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;
 };