Fix the build for older macOS.
[dcpomatic.git] / src / lib / content_part.h
index eb96b13710e210593ca47c8911225362d5bfb084..590be311289406c738b153423d5a6ab206a8d9e2 100644 (file)
@@ -1,6 +1,5 @@
-
 /*
-    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2016-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #ifndef DCPOMATIC_CONTENT_PART_H
 #define DCPOMATIC_CONTENT_PART_H
 
-#include "content.h"
+
 #include "change_signaller.h"
-#include <boost/weak_ptr.hpp>
+#include "content.h"
 #include <boost/thread/mutex.hpp>
 
+
 class Content;
 class Film;
 
+
 class ContentPart
 {
 public:
@@ -42,7 +44,7 @@ protected:
        void
        maybe_set (T& member, T new_value, int property) const
        {
-               ChangeSignaller<Content> cc (_parent, property);
+               ContentChangeSignaller cc (_parent, property);
                {
                        boost::mutex::scoped_lock lm (_mutex);
                        if (member == new_value) {
@@ -57,7 +59,7 @@ protected:
        void
        maybe_set (boost::optional<T>& member, T new_value, int property) const
        {
-               ChangeSignaller<Content> cc (_parent, property);
+               ContentChangeSignaller cc (_parent, property);
                {
                        boost::mutex::scoped_lock lm (_mutex);
                        if (member && member.get() == new_value) {
@@ -72,4 +74,5 @@ protected:
        mutable boost::mutex _mutex;
 };
 
+
 #endif