summaryrefslogtreecommitdiff
path: root/src/wx/screens_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-01-23 01:01:55 +0100
committerCarl Hetherington <cth@carlh.net>2022-03-09 17:04:02 +0100
commit943047c84a0cdc7fbcec392f512157d637b8ec71 (patch)
treea1e13f20bdb623ee01a7140942696a15b2efdfa3 /src/wx/screens_panel.h
parentf3bc2bad4657d660a07f9578b2cb1897b4e9d8c2 (diff)
Switch a list for vector.
Diffstat (limited to 'src/wx/screens_panel.h')
-rw-r--r--src/wx/screens_panel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/screens_panel.h b/src/wx/screens_panel.h
index d5c5144bd..bea9c2995 100644
--- a/src/wx/screens_panel.h
+++ b/src/wx/screens_panel.h
@@ -61,7 +61,7 @@ public:
explicit ScreensPanel (wxWindow* parent);
~ScreensPanel ();
- std::list<std::shared_ptr<dcpomatic::Screen>> screens () const;
+ std::vector<std::shared_ptr<dcpomatic::Screen>> screens () const;
void setup_sensitivity ();
boost::signals2::signal<void ()> ScreensChanged;