summaryrefslogtreecommitdiff
path: root/src/wx/job_manager_view.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-09-30 10:42:30 +0100
committerCarl Hetherington <cth@carlh.net>2016-09-30 10:42:30 +0100
commita5e041b46b675c1f42fc83920be45345662e0376 (patch)
tree65c9728693ed5f22028e5eeceeefad239f027919 /src/wx/job_manager_view.h
parent0ef231d6ef3c483edc5d13affd31367acfecd320 (diff)
Reverse order of jobs in the batch converter view.
Diffstat (limited to 'src/wx/job_manager_view.h')
-rw-r--r--src/wx/job_manager_view.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/job_manager_view.h b/src/wx/job_manager_view.h
index 7624678c2..d887718d3 100644
--- a/src/wx/job_manager_view.h
+++ b/src/wx/job_manager_view.h
@@ -35,7 +35,7 @@ class JobView;
class JobManagerView : public wxScrolledWindow
{
public:
- JobManagerView (wxWindow *);
+ JobManagerView (wxWindow *, bool latest_at_top);
private:
void job_added (boost::weak_ptr<Job>);
@@ -44,6 +44,7 @@ private:
wxPanel* _panel;
wxFlexGridSizer* _table;
boost::shared_ptr<wxTimer> _timer;
+ bool _latest_at_top;
std::list<boost::shared_ptr<JobView> > _job_records;
};