Separate readable error from technical detail in some places.
[dcpomatic.git] / src / wx / content_menu.h
index 84daa71a56e0cd13a749471699d79ab5e0f27e1d..0647331038b64d00477ca0e293abcf793d81a864 100644 (file)
@@ -35,7 +35,6 @@ class ContentMenu : public boost::noncopyable
 {
 public:
        ContentMenu (wxWindow* p);
-       ~ContentMenu ();
 
        void popup (boost::weak_ptr<Film>, ContentList, TimelineContentViewList, wxPoint);
 
@@ -56,6 +55,7 @@ private:
        /** Film that we are working with; set up by popup() */
        boost::weak_ptr<Film> _film;
        wxWindow* _parent;
+       bool _pop_up_open;
        ContentList _content;
        TimelineContentViewList _views;
        wxMenuItem* _repeat;
@@ -67,8 +67,6 @@ private:
        wxMenuItem* _ov;
        wxMenuItem* _choose_cpl;
        wxMenuItem* _remove;
-
-       std::list<boost::signals2::connection> _job_connections;
 };
 
 #endif