Fix some comment typos.
[dcpomatic.git] / src / wx / job_view.h
index d58a90831e37ae075faa54f730fcc338f07e508a..e6084b3818c15b122bbede4ec89791f072fd057e 100644 (file)
@@ -21,8 +21,6 @@
 #ifndef DCPOMATIC_JOB_VIEW_H
 #define DCPOMATIC_JOB_VIEW_H
 
-#include <boost/noncopyable.hpp>
-#include <boost/shared_ptr.hpp>
 #include <boost/signals2.hpp>
 
 class Job;
@@ -37,12 +35,15 @@ class wxButton;
 class wxSizer;
 class wxCheckBox;
 
-class JobView : public boost::noncopyable
+class JobView
 {
 public:
-       JobView (boost::shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table);
+       JobView (std::shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table);
        virtual ~JobView () {}
 
+       JobView (JobView const&) = delete;
+       JobView& operator= (JobView const&) = delete;
+
        virtual int insert_position () const = 0;
        virtual void job_list_changed () {}
 
@@ -51,18 +52,18 @@ public:
        void insert (int pos);
        void detach ();
 
-       boost::shared_ptr<Job> job () const {
+       std::shared_ptr<Job> job () const {
                return _job;
        }
 
 protected:
        virtual void finished ();
 
-       boost::shared_ptr<Job> _job;
+       std::shared_ptr<Job> _job;
        wxFlexGridSizer* _table;
        /** sizer for buttons (cancel, details, pause etc.) */
        wxBoxSizer* _buttons;
-       /** sizer for the guage and the message underneath it */
+       /** sizer for the gauge and the message underneath it */
        wxBoxSizer* _gauge_message;
 
 private: