Fix some comment typos.
[dcpomatic.git] / src / wx / job_view.h
index 19f746b012bf90fcc3473807e4e7fbb32720fb0a..e6084b3818c15b122bbede4ec89791f072fd057e 100644 (file)
@@ -21,7 +21,6 @@
 #ifndef DCPOMATIC_JOB_VIEW_H
 #define DCPOMATIC_JOB_VIEW_H
 
-#include <boost/noncopyable.hpp>
 #include <boost/signals2.hpp>
 
 class Job;
@@ -36,12 +35,15 @@ class wxButton;
 class wxSizer;
 class wxCheckBox;
 
-class JobView : public boost::noncopyable
+class JobView
 {
 public:
        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 () {}
 
@@ -61,7 +63,7 @@ protected:
        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: