summaryrefslogtreecommitdiff
path: root/src/lib/content_video.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-31 03:14:24 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-31 03:14:24 +0100
commit8fedaaa75c4586a4cc7ffb393bd71d1fdb091dc8 (patch)
treef8b25b13ac3732838be259e469d045438d999e7b /src/lib/content_video.h
parent4985d87750c87019dfe5dc7ef44e12c45326dd0e (diff)
More enum class additions.
Diffstat (limited to 'src/lib/content_video.h')
-rw-r--r--src/lib/content_video.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/content_video.h b/src/lib/content_video.h
index ee169b6c5..8ca18576e 100644
--- a/src/lib/content_video.h
+++ b/src/lib/content_video.h
@@ -33,8 +33,8 @@ class ContentVideo
public:
ContentVideo ()
: frame (0)
- , eyes (EYES_LEFT)
- , part (PART_WHOLE)
+ , eyes (Eyes::LEFT)
+ , part (Part::WHOLE)
{}
ContentVideo (std::shared_ptr<const ImageProxy> i, Frame f, Eyes e, Part p)