diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-29 08:31:23 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-29 08:31:23 +0200 |
| commit | b249700e1da7dd6631a8b4440587f4093a2bdef1 (patch) | |
| tree | 71f88855e72b11f927d194f0676bac93845d26be /src/wx/content_menu.h | |
| parent | 94695fc3214917ad7310af36270ce1e0b88cdfa3 (diff) | |
Remove use of boost::noncopyable.
Diffstat (limited to 'src/wx/content_menu.h')
| -rw-r--r-- | src/wx/content_menu.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/content_menu.h b/src/wx/content_menu.h index 7743d0712..8a3548419 100644 --- a/src/wx/content_menu.h +++ b/src/wx/content_menu.h @@ -30,11 +30,14 @@ class Film; class Job; class DCPContent; -class ContentMenu : public boost::noncopyable +class ContentMenu { public: explicit ContentMenu (wxWindow* p); + ContentMenu (ContentMenu const &) = delete; + ContentMenu& operator= (ContentMenu const &) = delete; + void popup (std::weak_ptr<Film>, ContentList, TimelineContentViewList, wxPoint); private: |
