diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-02-15 11:18:32 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-02-15 11:18:32 +0000 |
| commit | 1d18c62021664f4cac43b5930ee435f8ba177545 (patch) | |
| tree | f9746e575334cb589798aa5127683e18235622ec /src | |
| parent | e6fd5b89d3c5ff900b8169b059addf7f032a0783 (diff) | |
Fix typo.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/batch_job_view.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/batch_job_view.cc b/src/wx/batch_job_view.cc index 772c726f2..853dac8f4 100644 --- a/src/wx/batch_job_view.cc +++ b/src/wx/batch_job_view.cc @@ -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); } |
