summaryrefslogtreecommitdiff
path: root/src/wx/job_manager_view.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-07 16:31:26 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-09 13:44:57 +0100
commitf001a5020a6307f1adf650bd33a0c2a2ea26d468 (patch)
tree02f618795b9ddeb38b8bee937c60d4e15a4487db /src/wx/job_manager_view.h
parentb7055fae1bde84b8652fedb684b6932a545c1cba (diff)
JobRecord -> JobView.
Diffstat (limited to 'src/wx/job_manager_view.h')
-rw-r--r--src/wx/job_manager_view.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/job_manager_view.h b/src/wx/job_manager_view.h
index ccba75fb9..79cc4743c 100644
--- a/src/wx/job_manager_view.h
+++ b/src/wx/job_manager_view.h
@@ -26,7 +26,7 @@
#include <list>
class Job;
-class JobRecord;
+class JobView;
/** @class JobManagerView
* @brief Class which is a wxPanel for showing the progress of jobs.
@@ -44,5 +44,5 @@ private:
wxFlexGridSizer* _table;
boost::shared_ptr<wxTimer> _timer;
- std::list<boost::shared_ptr<JobRecord> > _job_records;
+ std::list<boost::shared_ptr<JobView> > _job_records;
};