Merge remote-tracking branch 'origin/master' into 2.0
[dcpomatic.git] / src / wx / content_menu.h
index a9f9093c6ab5bb3c94d48244480bc1859495bbf2..fccd5f38a4b714070f7c2db7f6f4822be446313c 100644 (file)
@@ -30,15 +30,16 @@ class Film;
 class ContentMenu
 {
 public:
-       ContentMenu (wxWindow *);
+       ContentMenu (wxWindow* p);
        ~ContentMenu ();
-
+       
        void popup (boost::weak_ptr<Film>, ContentList, wxPoint);
 
 private:
        void repeat ();
        void join ();
        void find_missing ();
+       void kdm ();
        void remove ();
        void maybe_found_missing (boost::weak_ptr<Job>, boost::weak_ptr<Content>, boost::weak_ptr<Content>);
        
@@ -50,6 +51,7 @@ private:
        wxMenuItem* _repeat;
        wxMenuItem* _join;
        wxMenuItem* _find_missing;
+       wxMenuItem* _kdm;
        wxMenuItem* _remove;
 };