Change bitmap_path to take a full name with extension.
[dcpomatic.git] / src / wx / paste_dialog.h
index 7de38fd2caaf1a378018119416e4230d3dfaa757..1f447d3f87a92665f5c594701bcae40ef50b14bc 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "table_dialog.h"
 
+
 class PasteDialog : public TableDialog
 {
 public:
-       PasteDialog (wxWindow* parent, bool video, bool audio, bool caption);
+       PasteDialog (wxWindow* parent, bool video, bool audio, bool text);
 
        bool video () const;
        bool audio () const;
-       bool caption () const;
+       bool text () const;
 
 private:
        wxCheckBox* _video;
        wxCheckBox* _audio;
-       wxCheckBox* _caption;
+       wxCheckBox* _text;
 };