X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcontent_part.h;h=eb96b13710e210593ca47c8911225362d5bfb084;hb=96f7dd41a2c8627bc1ea0d24d84142eb04b4ffef;hp=58833655fb5dcb9d503b1e0fc2f87ef8f62c1f67;hpb=e65d31fbccad80c80f743516ecdd8269826d2114;p=dcpomatic.git diff --git a/src/lib/content_part.h b/src/lib/content_part.h index 58833655f..eb96b1371 100644 --- a/src/lib/content_part.h +++ b/src/lib/content_part.h @@ -23,7 +23,7 @@ #define DCPOMATIC_CONTENT_PART_H #include "content.h" -#include "content_change.h" +#include "change_signaller.h" #include #include @@ -42,7 +42,7 @@ protected: void maybe_set (T& member, T new_value, int property) const { - ContentChange cc (_parent, property); + ChangeSignaller cc (_parent, property); { boost::mutex::scoped_lock lm (_mutex); if (member == new_value) { @@ -57,7 +57,7 @@ protected: void maybe_set (boost::optional& member, T new_value, int property) const { - ContentChange cc (_parent, property); + ChangeSignaller cc (_parent, property); { boost::mutex::scoped_lock lm (_mutex); if (member && member.get() == new_value) {