Fix typo.
authorCarl Hetherington <cth@carlh.net>
Wed, 15 Feb 2017 11:18:32 +0000 (11:18 +0000)
committerCarl Hetherington <cth@carlh.net>
Wed, 15 Feb 2017 11:18:32 +0000 (11:18 +0000)
src/wx/batch_job_view.cc

index 772c726f2ccf333bfeddb2c192975e72441ff6a0..853dac8f4adf1912a6d5f819aee0645cf4937737 100644 (file)
@@ -41,10 +41,10 @@ BatchJobView::insert_position () const
 void
 BatchJobView::finish_setup (wxWindow* parent, wxSizer* sizer)
 {
-       _higher_priority = new wxButton (parent, wxID_ANY, _("Higher prioirity"));
+       _higher_priority = new wxButton (parent, wxID_ANY, _("Higher priority"));
        _higher_priority->Bind (wxEVT_BUTTON, boost::bind (&BatchJobView::higher_priority_clicked, this));
        sizer->Add (_higher_priority, 1, wxALIGN_CENTER_VERTICAL);
-       _lower_priority = new wxButton (parent, wxID_ANY, _("Lower prioirity"));
+       _lower_priority = new wxButton (parent, wxID_ANY, _("Lower priority"));
        _lower_priority->Bind (wxEVT_BUTTON, boost::bind (&BatchJobView::lower_priority_clicked, this));
        sizer->Add (_lower_priority, 1, wxALIGN_CENTER_VERTICAL);
 }