Small fixes and tidy-ups spotted by cppcheck.
[dcpomatic.git] / src / wx / content_menu.h
index fccd5f38a4b714070f7c2db7f6f4822be446313c..cd51e86f1a9fb21b14aa146d62287cca611b9a7e 100644 (file)
@@ -27,7 +27,7 @@
 
 class Film;
 
-class ContentMenu
+class ContentMenu : public boost::noncopyable
 {
 public:
        ContentMenu (wxWindow* p);
@@ -39,6 +39,7 @@ private:
        void repeat ();
        void join ();
        void find_missing ();
+       void re_examine ();
        void kdm ();
        void remove ();
        void maybe_found_missing (boost::weak_ptr<Job>, boost::weak_ptr<Content>, boost::weak_ptr<Content>);
@@ -51,6 +52,7 @@ private:
        wxMenuItem* _repeat;
        wxMenuItem* _join;
        wxMenuItem* _find_missing;
+       wxMenuItem* _re_examine;
        wxMenuItem* _kdm;
        wxMenuItem* _remove;
 };