summaryrefslogtreecommitdiff
path: root/src/wx/metadata_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-08-08 18:11:11 +0200
committerCarl Hetherington <cth@carlh.net>2023-08-09 10:18:46 +0200
commita3c1ae7c2e46b65347341896b3d1a505ff92632b (patch)
tree2b096eb0676f52c9989952e341f2bd98143ce125 /src/wx/metadata_dialog.h
parentaf5b9dfadf8989311cd5f78554349f0283912522 (diff)
Extract Film::Property to its own header to (maybe) increase compilation speed.
Diffstat (limited to 'src/wx/metadata_dialog.h')
-rw-r--r--src/wx/metadata_dialog.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wx/metadata_dialog.h b/src/wx/metadata_dialog.h
index b77b14a99..43da2ba71 100644
--- a/src/wx/metadata_dialog.h
+++ b/src/wx/metadata_dialog.h
@@ -25,8 +25,9 @@
#include "editable_list.h"
#include "lib/change_signaller.h"
-#include "lib/film.h"
+#include "lib/film_property.h"
#include "lib/weak_film.h"
+#include <dcp/rating.h>
#include <dcp/warnings.h>
LIBDCP_DISABLE_WARNINGS
#include <wx/wx.h>
@@ -53,7 +54,7 @@ public:
protected:
virtual void setup_standard (wxPanel*, wxSizer*);
virtual void setup_advanced (wxPanel*, wxSizer*);
- virtual void film_changed (ChangeType type, Film::Property property);
+ virtual void film_changed(ChangeType type, FilmProperty property);
virtual void setup_sensitivity ();
EditableList<dcp::Rating, RatingDialog>* _ratings;